SO社区,
我一直在尝试将应用程序自动发布到我的 Facebook 页面。
这些是我采取的步骤:
A) 我为我的所有 facebook 页面授权了我的应用程序,并授予了 offline_access、publish_stream 和 manage_pages 使用权限
https://www.facebook.com/dialog/oauth?client_id=<app_id>&redirect_uri=<url>&scope=read_stream,publish_stream,manage_pages,offline_access,publish_actions
B)我为具有这些权限的应用程序请求了访问令牌
https://graph.facebook.com/oauth/access_token?grant_type=client_credentials&client_id=<app_id>&client_secret=<app_secure_key>&scope=manage_pages,offline_access,publish_stream
C)我现在想获取页面的访问令牌,以便能够使用
https://graph.facebook.com/feed?<page_access_token>&message=test&id=<page_id>&method=post
但是获取 page_access_token 是我失败的地方
这是我正在尝试的电话
https://graph.facebook.com/<page_id>?fields=access_token&access_token=<app_access_token>
但不是页面的访问令牌,我只是得到这个:
{
"id": "<page_id>"
}
任何人都知道我缺少什么来获得 .
/托马斯