我需要使用 FQL 在我的 Facebook 页面上获取帖子。我试过查询:
SELECT message FROM stream WHERE source_id= My_Page_ID
然后我得到了错误:
{
"error": {
"message": "An access token is required to request this resource.",
"type": "OAuthException",
"code": 104
}
}
然后我用 access_token 尝试了相同的查询:-
SELECT message FROM stream
WHERE source_id= My_Page_ID AND access_token = my_access_token
然后我得到了错误
{
"error": {
"message": "(#602) acces_token is not a member of the stream table.",
"type": "OAuthException",
"code": 602
}
}
我该怎么办。我该如何解决。请为我提供一个无错误的 FQL 查询,以便使用 C#.net 在我的 Facebook 页面上获取 POST