1

我正在尝试使用 HTTP POST 请求删除应用程序请求: https ://graph.facebook.com/288041244541781_100000461597474?access_token=AT&method=delete 我使用的访问令牌来自signed_request 对象。

但是,这样做时我收到此错误:

{
   "error": {
      "message": "(#2) App Request Recipient Must Be Specified: The recipient for this app request must be specified through a user-signed access token or the fully specified app request ID.",
      "type": "OAuthException"
   }
}

我想我提供了完全指定的应用程序请求 ID,但我似乎找不到用户签名的访问令牌和我正在使用的令牌之间的区别。我怎样才能让它工作?

4

2 回答 2

0
if(isset($_REQUEST['request_ids'])) {
  $reqs = explode(',', $_REQUEST['request_ids']);
  foreach($reqs as $req) {
    $url  = "https://graph.facebook.com/".$req."?access_token=";
    $url .= $facebook->getAccessToken()."&method=delete";
    $result = file_get_contents($delete_url);
  }
}
于 2013-02-26T14:20:12.567 回答
0

访问令牌在 linter 工具中看起来是否正确并具有正确的权限?

于 2012-01-06T08:06:35.790 回答