繁体   English   中英

iOS:-canOpenURL:URL失败:“ fbauth2:/”-错误:“操作无法完成。 (OSStatus错误-10814。)”在模拟器和设备上

[英]iOS: -canOpenURL: failed for URL: “fbauth2:/” - error: “The operation couldn’t be completed. (OSStatus error -10814.)” on Simulators & Devices

我使用了该链接,但有该错误消息。 不可能知道为什么。 我想要的只是一个按钮,单击它即可在iPad上共享本地图像,而无需安装facebook应用程序。 我只希望用户单击按钮,输入他的登录名/密码,然后将其发布,仅此而已。

UIImage *image = [UIImage imageNamed:@"..."];

FBSDKSharePhoto *photo = [[FBSDKSharePhoto alloc] init];
photo.image = image;
photo.userGenerated = YES;
FBSDKSharePhotoContent *content = [[FBSDKSharePhotoContent alloc] init];
content.photos = @[photo];

appDelegate中的openUrl方法:

- (BOOL) application:(UIApplication *)app openURL:(NSURL *)url options:(NSDictionary<UIApplicationOpenURLOptionsKey,id> *)options
{
    NSLog(@"url recieved: %@", url);
    NSLog(@"query string: %@", [url query]);
    NSLog(@"host: %@", [url host]);
    NSLog(@"url path: %@", [url path]);

      return YES;
}

我精确指出在线上存在问题:

[[FBSDKApplicationDelegate sharedInstance] application:application
                         didFinishLaunchingWithOptions:launchOptions];
  • 在控制台(模拟器)中执行其他消息错误:
    由于模拟器错误,回退到从NSUserDefaults加载访问令牌
    由于模拟器错误,回退到在NSUserDefaults中存储访问令牌

  • 在控制台(设备)中执行其他消息错误:
    任务。<1>已完成,错误-代码:-1001

有关信息,这是我的plist键:

<key>CFBundleURLTypes</key>
<array>
    <dict>
    <key>CFBundleURLSchemes</key>
    <array>
        <string>fb2000xxxxxxxxxxx</string>
    </array>
    <key>CFBundleTypeRole</key>
    <string>Editor</string>
    <key>CFBundleURLName</key>
    <string>com.newTelApps.WebBoxEssaisPresse</string>
    </dict>
</array>
<key>FacebookAppID</key>
<string>2000xxxxxxxxxxx</string>
<key>FacebookDisplayName</key>
<string>WebBox</string>
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>fbapi</string>
    <string>fb-messenger-api</string>
    <string>fbauth2</string>
    <string>fbshareextension</string>
    <string>fbapi</string>
    <string>twitter</string>
    <string>facebook</string>
    <string>fbapi</string>
    <string>fbapi20130214</string>
    <string>fbapi20130410</string>
    <string>fbapi20130702</string>
    <string>fbapi20131010</string>
    <string>fbapi20131219</string>
    <string>fbapi20140410</string>
    <string>fbapi20140116</string>
    <string>fbapi20150313</string>
    <string>fbapi20150629</string>
    <string>fbauth</string>
    <string>fb-messenger-api20140430</string>
</array>

提前致谢。

转到Info.plist并将“ App Transport Security Settings ==>“ Allow Arbitrary Loads更改为YES

要么

添加LSApplicationQueriesSchemes

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM