在Instagram上发表评论

时间:2014-07-11 10:37:28

标签: ios instagram

我一直在关注本教程" http://technet.weblineindia.com/mobile/instagram-api-integration-in-ios-application/2/"并能够登录甚至获取用户的数据,如他的图像,喜欢和评论。但是,当谈到发布像#34;评论图像"和"张贴图片"这真的令人困惑。

我已经在网上搜索了http://instagram.com/developer/endpoints/comments/,但我无法将其纳入我的代码中,并且从哪里获取media_id令人困惑,我甚至都不知道确定这是否正是我想要的。

请有人在此之后指导我如何继续,或者如果某人有一些有用的教程。非常感谢提前

编辑:

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://api.instagram.com/oauth/authorize/?client_id=%@&redirect_uri=%@&response_type=token&scope=likes+comments+relationships",KCLIENTID,kREDIRECTURI]];
[instaLogin loadRequest:[NSURLRequest requestWithURL:url]];

1 个答案:

答案 0 :(得分:0)

刚发现您没有正确构建网址:

试试这个:

NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"https://api.instagram.com/v1/media/761688240037794812_261410739/comments?access_token=319219722.a1a262a.7ca4123804ee4506a63256519b32147c&text=test"];

<强> **** **** EDIT

确保您使用的是GET,POST&amp;正确删除。请参阅您提供的链接的顶部。我怀疑你是用GET打电话给我的。

http://instagram.com/developer/endpoints/comments/