gpt4 book ai didi

post - 无法在将照片上传到用户墙时标记好友 - Facebook iOS

转载 作者:行者123 更新时间:2023-12-02 05:04:58 26 4
gpt4 key购买 nike

我在上传照片并将用户的 friend 标记到 Facebook 用户的墙上时遇到问题。它返回未知错误

如果我删除了 tags 参数,它将完美运行。

这是我用来发布照片和标记用户的代码

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

NSMutableDictionary *tagDict=[[NSMutableDictionary alloc]init];

for(int i=0; i < appDelegate.listFriend.count ;i++) {
NSDictionary *friend = [appDelegate.listFriend objectAtIndex:i];
NSString *type = [NSString stringWithFormat:@"%@",[friend objectForKey:@"type"]];
if([type intValue] == 1) {

[tagDict setValue:[friend objectForKey:@"id"] forKey:@"tag_uid"];
[chunks addObject:tagDict];
}
}

[photoParams setObject:[chunks JSONString] forKey:@"tags"];

//test posting facebook's image's url
NSString *imagePath = urlPhoto;
NSURL *imageUrl = [NSURL URLWithString:imagePath];
NSData *imageData = [NSData dataWithContentsOfURL:imageUrl];

NSMutableDictionary *photoParams = [NSMutableDictionary dictionaryWithObjectsAndKeys:
message, @"message", imageData, @"source", nil];

[appDelegate.facebook requestWithGraphPath:@"/me/photos" andParams:photoParams andHttpMethod:@"POST" andDelegate:appDelegate.self];

请帮我解决这个问题,感谢所有想法。

谢谢

最佳答案

从 Facebook 开发者帐户查看此链接。它对我来说效果很好,如果您愿意,我可以先尝试一下,我也可以提供代码。

FaceBook Docs Here

关于post - 无法在将照片上传到用户墙时标记好友 - Facebook iOS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12918934/

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