我正在使用以下代码在当前用户提要上发布帖子:
NSMutableDictionary *postParams = [[NSMutableDictionary alloc] initWithObjectsAndKeys:
@"http://url.com/image.jpg", @"picture",
@"The title of the post on the feed", @"name",
@"Caption text", @"caption",
@"Description text", @"description", nil];
[self.facebook requestWithGraphPath:@"me/feed" andParams:postParams andHttpMethod:@"POST" andDelegate:nil];
它工作得很好,但我不知道如何设置帖子名称后面的链接(“提要上帖子的标题”)。目前,该链接如下所示:
https://www.facebook.com/connect/uiserver.php?app_id=[MY_APP_ID]&method=permissions.request&redirect_uri=[THE_URL_OF_THE_PICTURE]&response_type=code&display=page&auth_referral=1
有没有办法轻松控制这个网址?谢谢!
- 编辑 -
这是我要创建的一种帖子的屏幕截图:
http://cl.ly/image/020D1z3S2L16。蓝色标题“Je t'ai envoyé un défi dans Années 80”后面的链接非常干净(就像http://itunes.apple.com/app/[APP_NAME]一样),我也想这样做。
我相信这不是一个开放的图表动作,只是一个基本的帖子。谢谢