我正在请求我的朋友,使用如下简单的代码,它工作得很好。
- (NSDictionary*)parseURLParams:(NSString *)query {
NSArray *pairs = [query componentsSeparatedByString:@"&"];
NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
for (NSString *pair in pairs) {
NSArray *kv = [pair componentsSeparatedByString:@"="];
NSString *val =
[kv[1] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
params[kv[0]] = val;
}
return params;
}
- (void)sendRequest {
// Display the requests dialog
[FBWebDialogs
presentRequestsDialogModallyWithSession:nil
message:@"Learn how to make your iOS apps social."
title:nil
parameters:nil
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);
}
}
}
}];
}
当接收到的用户单击请求时,它也将其重定向到我的应用程序的 appStore 链接,我在.plist文件中使用了其 Facebook ID。
我想显示 URL,比如 www.myiosdeveloper.com,那么我该如何重定向它。
我在文档中找到了一些东西,但我无法理解。
在上面给出的文档的页面下面,它说,
https://www.facebook.com/dialog/apprequests?
app_id=APP_ID&
=Facebook%20Dialogs%20are%20so%20easy!&
redirect_uri=http://www.example.com/response
所以,是什么,请解释一下。SDK 可以允许我做我想做的事,即重定向到我的页面。