我使用邮递员从Facebook Graph API查询。我正在尝试下一行:
https://graph.facebook.com/v2.8/me?access_token=my_access_token=<here is my user token>
我得到:
{
"error": {
"message": "Invalid OAuth access token.",
"type": "OAuthException",
"code": 190,
"fbtrace_id": "ASBwgp9xF/R"
}
}
我不能单独弄清楚正确的语法
访问令牌适用于facebook graph api explorer.
答案 0 :(得分:2)
您甚至不需要邮递员,只需点击浏览器中的网址即可。
这是正确的:
https://graph.facebook.com/v2.8/me?access_token=<here is my user token>