2

我一直在尝试进行以下 Facebook 图形 api 调用...

https://graph.facebook.com/me&access_token=mytokenhere

几个月来我一直在打同样的电话,没有任何问题。我收到以下回复...

{
   "error": {
      "message": "(#803) Some of the aliases you requested do not exist: me&access_token=mytokenhere",
      "type": "OAuthException",
      "code": 803
   }
}

显然 mytokenhere 被替换为我的实际令牌,而不是传递文字“mytokenhere”。

任何帮助,将不胜感激!

4

1 回答 1

2

看起来您没有正确调用 qs 参数。

试试这个:

https://graph.facebook.com/me?access_token=mytokenhere

于 2012-12-11T20:13:26.050 回答