【发布时间】:2014-05-14 03:47:36
【问题描述】:
我正在使用 cordova facebook connect 插件对我的应用程序进行用户身份验证。我的问题是,如果用户取消登录或分享到 Facebook,我仍然不知道如何禁用默认错误消息。
我已经禁用了 facebook-js-sdk.js 文件中的所有警报消息,但仍在发生。
【问题讨论】:
-
这个问题好运吗?
标签: ios objective-c facebook cordova
我正在使用 cordova facebook connect 插件对我的应用程序进行用户身份验证。我的问题是,如果用户取消登录或分享到 Facebook,我仍然不知道如何禁用默认错误消息。
我已经禁用了 facebook-js-sdk.js 文件中的所有警报消息,但仍在发生。
【问题讨论】:
标签: ios objective-c facebook cordova
是的。效果很好。
进入 FacebookConnectPlugin.m 文件,找到这个函数
- (void) showDialog:(CDVInvokedUrlCommand*)command
用该函数中的这段代码替换。
// Save the callback ID
self.dialogCallbackId = command.callbackId;
NSMutableDictionary *options = [[command.arguments lastObject] mutableCopy];
NSString* method = [[NSString alloc] initWithString:[options objectForKey:@"method"]];
if ([options objectForKey:@"method"]) {
[options removeObjectForKey:@"method"];
}
__block BOOL paramsOK = YES;
NSMutableDictionary *params = [[NSMutableDictionary alloc] init];
[options enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {
if ([obj isKindOfClass:[NSString class]]) {
params[key] = obj;
} else {
NSError *error;
NSData *jsonData = [NSJSONSerialization
dataWithJSONObject:obj
options:0
error:&error];
if (!jsonData) {
paramsOK = NO;
// Error
*stop = YES;
}
params[key] = [[NSString alloc]
initWithData:jsonData
encoding:NSUTF8StringEncoding];
}
}];
if (!paramsOK) {
CDVPluginResult *pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR
messageAsString:@"Error completing dialog."];
[self.commandDelegate sendPluginResult:pluginResult callbackId:self.dialogCallbackId];
} else {
// Show the web dialog
[FBWebDialogs
presentDialogModallyWithSession:FBSession.activeSession
dialog:method parameters:params
handler:^(FBWebDialogResult result, NSURL *resultURL, NSError *error) {
CDVPluginResult* pluginResult = nil;
if (error) {
// Dialog failed with error
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR
messageAsString:@"Error completing dialog."];
} else {
if (result == FBWebDialogResultDialogNotCompleted) {
// User clicked the "x" icon to Cancel
//pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR
//messageAsString:@"User cancelled."];
} else {
// Send the URL parameters back, for a requests dialog, the "request" parameter
// will include the resluting request id. For a feed dialog, the "post_id"
// parameter will include the resulting post id.
NSDictionary *params = [self parseURLParams:[resultURL query]];
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsDictionary:params];
}
}
[self.commandDelegate sendPluginResult:pluginResult callbackId:self.dialogCallbackId];
}];
[super writeJavascript:nil];
}
// For optional ARC support
#if __has_feature(objc_arc)
#else
[method release];
[params release];
[options release];
#endif
【讨论】: