A subscription to an application to get real-time updates for an Graph object type. For more details, see the Real-time Overview.

目次:

Example

https://graph.facebook.com/APP_ID/subscriptions (APP_NAME)

Properties

NameDescriptionPermissionsReturns
object

購読するオブジェクトタイプ

デフォルトでFacebook上の全員に公開

コードもしくはパーミッションを含むJSON string

fields

The list of fields for the object type オブジェクトタイプのリスト

デフォルトでFacebook上の全員に公開

カンマ区切りのフィールド名が含まれたJSON string

callback_url

リアルタイム通知を受け取るアプリケーション側のエンドポイント

デフォルトでFacebook上の全員に公開

有効なURLが含まれたJSON string

active

購読がアクティブか否か

デフォルトでFacebook上の全員に公開

JSON boolean

Publishing

購読するには、object,fields,callback_urlをapplication/subscriptionに対してPOSTします。
curl https://graph.facebook.com/APP_ID/subscriptions \
-F 'access_token=...' \
-F 'object=user' \
-F 'fields=activities,friends,feed' \
-F 'callback_url=http://www.site.com/callback.php' \
-F \
'verify_token=a_secret_you_want_echoed'