gpt4 book ai didi

ios - 如何在 Objective c 中使用 FBWebDialogs 发送请求

转载 作者:行者123 更新时间:2023-11-29 10:56:18 25 4
gpt4 key购买 nike

我正在创建一个游戏,用户可以在其中使用 FBdialogs 向他的 friend 发送请求。为此,我使用了以下代码。

    NSError *error;
NSData *jsonData = [NSJSONSerialization
dataWithJSONObject:@{
@"social_karma": @"5",
@"badge_of_awesomeness": @"1"}
options:0
error:&error];
if (!jsonData) {
NSLog(@"JSON error: %@", error);
return;
}

NSString *giftStr = [[NSString alloc]
initWithData:jsonData
encoding:NSUTF8StringEncoding];

NSMutableDictionary* params = [@{@"data" : giftStr} mutableCopy];


// Display the requests dialog
[FBWebDialogs
presentRequestsDialogModallyWithSession:nil
message:@"Learn how to make your iOS apps social."
title:nil
parameters:params
handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
if (error) {
// Error launching the dialog or sending the request.
NSLog(@"Error sending request.");
} else {
if (result == FBWebDialogResultDialogNotCompleted) {
// User clicked the "x" icon
NSLog(@"User canceled request.");
} else {
// Handle the send request callback
NSDictionary *urlParams = [self parseURLParams:[resultURL query]];
if (![urlParams valueForKey:@"request"]) {
// User clicked the Cancel button
NSLog(@"User canceled request.");
} else {
// User clicked the Send button
NSString *requestID = [urlParams valueForKey:@"request"];
NSLog(@"Request ID: %@", requestID);
}
}
}
}];

此代码成功向选定用户发送请求并显示请求 ID。但是当我检查 friend 更新时。它没有在他的更新中显示任何请求。

任何人都可以告诉我这段代码有什么问题吗?还是应该有任何其他方法向 friend 发送请求?

最佳答案

请检查 -

  1. 应用设置

    您可能忘记将 iOS 应用的设置放入应用面板中的应用设置

  2. 沙盒模式

    确保在应用程序设置中关闭沙盒模式。

关于ios - 如何在 Objective c 中使用 FBWebDialogs 发送请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18202001/

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