iPhone 的 Facebook API 错误:必须使用活动访问令牌

发布于 2024-11-09 09:19:51 字数 520 浏览 0 评论 0原文

我正在尝试检索我的在线好友,但收到此错误:

“必须使用活动访问令牌来查询有关当前用户的信息。”

这是我的方法:

-(IBAction)act:(id)sender{

    NSArray* permissions =  [[NSArray arrayWithObjects:
                              @"user_online_presence", @"friends_online_presence", nil] retain];
    
    [facebook authorize:permissions delegate:self];
    [facebook requestWithGraphPath:@"me/friends" andDelegate:self];     
   
    NSLog(@"dd");
    NSLog(@"%@",facebook.accessToken);
}

我在这里做错了什么?

I am trying to retrieve my online friends and I am getting this error:

"An active access token must be used to query information about the current user."

This is my method:

-(IBAction)act:(id)sender{

    NSArray* permissions =  [[NSArray arrayWithObjects:
                              @"user_online_presence", @"friends_online_presence", nil] retain];
    
    [facebook authorize:permissions delegate:self];
    [facebook requestWithGraphPath:@"me/friends" andDelegate:self];     
   
    NSLog(@"dd");
    NSLog(@"%@",facebook.accessToken);
}

What I am doing wrong here?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人迟暮 2024-11-16 09:19:51

您没有等待授权完成。

您将需要实现 didLogin 委托方法和

[facebook requestWithGraphPath:@"me/friends" andDelegate:self];

仅应在调用 didLogin 后才进行。

you are not waiting for the authorization to complete.

You will need to implement the didLogin delegate method, and

[facebook requestWithGraphPath:@"me/friends" andDelegate:self];

should go only after didLogin was called.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文