我有一个应用程序可以将链接和照片上传到Facebook。我在developer.facebook.com的app设置中将它链接到我的app facebook页面。有两种情况。
1)当我上传带有一些文字的链接时。 “via< Appname >”可从我的主页和个人资料点击。
[FB requestWithGraphPath:@"me/feed" andParams:[NSMutableDictionary dictionaryWithObjectsAndKeys: [[self.recipeDetails objectForKey:@"source"] objectForKey:@"sourceRecipeUrl"], @"link",fbtextView.text, @"message", nil] andHttpMethod:@"POST" andDelegate:self];
2)当我上传带有一些文字的照片时。 “via< Appname >”只能从主页 Feed中点击,但不能从个人资料 Feed中点击。
[FB requestWithGraphPath:@"me/photos" andParams:[NSMutableDictionary dictionaryWithObjectsAndKeys: imageData,@"source",fbtextView.text, @"message", nil] andHttpMethod:@"POST" andDelegate:self];
这是实际情况还是我错过了什么。请帮助。
答案 0 :(得分:-1)
您是否尝试在Facebook App上查看此设置:
它没有经过测试,但也许你可以尝试启用和禁用此设置来检查它是否会改变你的结果。