gpt4 book ai didi

xcode - Facebook publish_actions 弃用

转载 作者:行者123 更新时间:2023-12-01 09:03:03 26 4
gpt4 key购买 nike

我可以做些什么来替代 publish_actions?我有一个照片应用程序,可以让用户将他们的照片分享到他们的个人资料中。目前它使用 logInWithPublishPermissions:@[@"publish_actions"] 然后通过 FBSDKSharePhoto 共享文件。但在 8 月 1 日之后,这将被删除。有什么想法吗?这是我当前的代码,但很快就会失效。

-(IBAction)loginToFacebook:(id)sender
{
FBSDKLoginManager *login = [[FBSDKLoginManager alloc] init];
login.loginBehavior = FBSDKLoginBehaviorWeb;

[login logInWithPublishPermissions:@[@"publish_actions"]
fromViewController:self
handler:^(FBSDKLoginManagerLoginResult *result, NSError *error) {
if (error) {
NSLog(@"Process error");

} else if (result.isCancelled) {
NSLog(@"Cancelled");
nonpressTimer = [NSTimer scheduledTimerWithTimeInterval:15.0 target:self selector:@selector(timeout) userInfo:nil repeats:NO];
} else {
NSLog(@"Logged in");

[self shareSegmentWithFacebookComposer];
}

}];
}

- (void)shareBoothOnFacebook {
NSUserDefaults *defaults2 = [NSUserDefaults standardUserDefaults];
NSData *data6 = [defaults2 objectForKey:@"layoutphoto"];
UIImage *myImage = [NSKeyedUnarchiver unarchiveObjectWithData:data6];


NSMutableArray *photos = [[NSMutableArray alloc] init];


for (int i = 0; i < [self.arrSlidshowImg count]; i++) {

UIImage *image = [UIImage imageWithData:[_arrSlidshowImg objectAtIndex:i]];
FBSDKSharePhoto *photo = [[FBSDKSharePhoto alloc] init];
photo.image = image;
photo.userGenerated = YES;
[photos addObject:photo];


}

FBSDKSharePhotoContent *content = [[FBSDKSharePhotoContent alloc] init];
content.photos = [photos copy];
[FBSDKShareAPI shareWithContent:content delegate:nil];


}
}

最佳答案

您需要切换到使用 Facebook 的 iOS 共享 API,这需要安装 Facebook Messenger 应用程序。查看他们的 documentation on sharing .

您可能还想调查 iOS share sheet 的使用但这还需要安装 Facebook Messenger 应用程序才能共享到 Facebook。

关于xcode - Facebook publish_actions 弃用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50279385/

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