我试图在我的应用程序的服务器端生日。
我的登录请求已获得static NSMutableString * reverseString(NSString * originalString) {
...
}
...
NSMutableString *newString = reverseString(originalString);
权限。
但是现在在服务器上我需要做这样的事情我想。
["user_birthday"]
但这会产生类似的结果。
userBirtdhay = "https://graph.facebook.com/me?fields=birthday&" + user.services.facebook.id;
如果你去网址,你会得到一个
https://graph.facebook.com/me?fields=birthday&10146450841965723dffsadf
经过一些研究得知网址上的{
"error": {
"message": "An active access token must be used to query information about the current user.",
"type": "OAuthException",
"code": 2500
}
}
空间应该是我的accessToken,所以我试试。
me
但现在又回来了。
https://graph.facebook.com/longAccesToken?fields=birthday&
答案 0 :(得分:2)
这是正确的:
https://graph.facebook.com/me?fields=birthday&access_token=[your-user-token]
您应该开始阅读有关访问令牌和API端点的Facebook文档。您可以使用API Explorer。
测试API