作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我可以做些什么来替代 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/
之前?
我是一名优秀的程序员,十分优秀!