1

我正在尝试发布以下 facebook Graph API explorer。

cody.short.94/notifications? access_token= {User Access Token} &template= this is a test &href= www.test.com

我希望能够向用户发送通知,但所有尝试都失败了。我目前收到此错误:

{
   "error": {
       "message": "(#15) This method must be called with an app access_token.", 
       "type": "OAuthException", 
       "code": 15
   }
}

我不确定是什么原因造成的,我需要一些指导。任何帮助,将不胜感激。注意:我的应用程序当前标记为网络,所以它不是问题

4

2 回答 2

3

看,错误是不言自明的:

必须使用应用程序 access_token 调用此方法

通知 API使用 APP 访问令牌,而不是用户访问令牌!

App Access Token 是:APP_ID|APP_SECRET或者直接从这里获取进行测试。(确保此令牌的安全性,这非常重要,就像您的应用程序的密码一样)

现在使用 Graph API Explorer 测试查询,并从 Access token 字段中删除 user token 并将其替换为 App Access Token

它看起来像这样- 在此处输入图像描述

于 2013-10-03T06:35:55.053 回答
1

确保将应用访问令牌粘贴到显示访问令牌APP_ID|APP_SECRET的顶部字段中在此处输入图像描述

于 2015-08-26T20:12:14.310 回答