2

我正在尝试从我的应用程序发送 facebook 通知,但实际上 Graph API Explorer 仍在返回我“(#15)必须使用应用程序 access_token 调用此方法。”

这就是我所做的:

1000000001/notifications?access_token=100000000000001|Quuuuuuuuuuuuuuuuuw&href=http://www.xxx.com/&template=Hello

虽然我以多种方式获取应用访问令牌,但我已经使用此令牌删除应用请求。

$APPLICATION_ID = "APP_ID";
$APPLICATION_SECRET = "APP_SECRET";

$token_url =    "https://graph.facebook.com/oauth/access_token?" .
        "client_id=" . $APPLICATION_ID .
        "&client_secret=" . $APPLICATION_SECRET .
        "&grant_type=client_credentials";
$app_token = file_get_contents($token_url);

access_token = YOUR_APP_ID|YOUR_APP_SECRET

我知道应用程序访问令牌不会过期。

此解决方案不起作用。 https://stackoverflow.com/a/12771192/1022298

编辑。发明了 App_id 和 secret。

4

0 回答 0