开发者

Retrieve Applications Requests (apprequests) through FQL?

开发者 https://www.devze.com 2023-04-09 14:37 出处:网络
From the Requests Dialog document: Graph API To retrieve a single User ID from a single Request ID using the Graph API, issue an HTTP GET request开发者_JAVA技巧 to the request_id:

From the Requests Dialog document:

Graph API

To retrieve a single User ID from a single Request ID using the Graph API, issue an HTTP GET request开发者_JAVA技巧 to the request_id:

https://graph.facebook.com/[request_id]?access_token=USER_ACCESS_TOKEN

Is this request available through FQL?


Yes this is available via the apprequest fql table:

SELECT request_id, app_id, recipient_uid, sender_uid 
FROM apprequest 
WHERE request_id = 10150308414012941
0

精彩评论

暂无评论...
验证码 换一张
取 消