gpt4 book ai didi

facebook - iOS Facebook SDK 发送后未收到任何 "Request"

转载 作者:行者123 更新时间:2023-12-02 21:56:06 25 4
gpt4 key购买 nike

我正在 Facebook 开发者网站上关注这两个教程 https://developers.facebook.com/docs/tutorials/ios-sdk-games/requests/

https://developers.facebook.com/docs/howtos/send-requests-using-ios-sdk/#step2

这些是我的代码:

[FBWebDialogs presentRequestsDialogModallyWithSession:nil
message:[NSString stringWithFormat:@"I just smashed %u friends! Can you beat it?", score]
title: nil
parameters:params
handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error)
{
if (error)
{
// Case A: Error launching the dialog or sending request.
UIAlertView* alert = [[UIAlertView alloc] initWithTitle: @"Facebook" message: error.description delegate: nil cancelButtonTitle: @"Ok" otherButtonTitles: nil];
[alert show];
[alert release];
}
else
{
if (result == (FBWebDialogResultDialogCompleted))
{
// Handle the publish feed callback
NSDictionary *urlParams = [self parseURLParams:[resultURL query]];

if ([urlParams valueForKey: @"request"])
{
// User clicked the Share button
NSLog(@"Send");
}
}
}
}];

问题是在我发出请求后,我的 friend 告诉我他没有在 FB 通知中心网站收到任何通知/请求。有谁知道为什么吗?

这些是我做过的事情:

  1. 我已在 info.plist 和 Facebook 应用程序中正确设置。

  2. 我没有使用沙盒模式。

  3. 我当前的应用程序能够登录并发布到墙上。

  4. 我拥有 publish_actions 权限。

  5. 我没有收到任何错误或警告。

最佳答案

我在这里找到了解决方案: Facebook App Requests aren't shown on iOS devices?

是因为我没有设置iPhone App ID和iPad App ID

关于facebook - iOS Facebook SDK 发送后未收到任何 "Request",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17800710/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com