我需要使用FQL在我的Facebook頁面上發佈帖子。我試着查詢:FQL查詢用法
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
我的用戶訪問,** 2 **個月有效期 – user2605663
@ user2605663,這是什麼意思? – christiandev