这是我在文档中看到的:
Apps can send notifications to any existing user that has authorized the app. No special or extended permission is required.
好的听起来不错。我正在使用 JS SDK,这就是我想要做的:
FB.api('/me/notifications?access_token=' + window.accessToken + '&href=test&template=test', function(response) {
console.log(response);
});
这就是我得到的:
"(#200) The "manage_notifications" permission is required in order to query the user's notifications."
我尝试用我的应用程序的真实域替换 href 参数。使用我的 Facebook ID 而不是“/me/”也没有什么区别。帮助!
我已经尝试添加 manage_notifications 权限(但仍然不起作用......),但我的问题是为什么它在文档中说相反?
编辑:去PHP:
<?php
include_once('sdk/facebook.php');
$user = $_POST['user'];
$message = $_POST['message'];
$config = array();
$config['appId'] = '609802022365238';
$config['secret'] = '71afdf0dcbb5f00739cfaf4aff4301e7';
$facebook = new Facebook($config);
$facebook->setAccessToken($config['appId'].'|'.$config['secret']);
$href = 'href';
$params = array(
'href' => $href,
'template' => $message,
);
$facebook->api('/' . $user . '/notifications/', 'POST', $params);
?>
编辑2:在一个愚蠢的逻辑错误之后,它现在可以工作了:)