flickr json 休息呼叫不起作用
我在 iPhone 应用程序上使用 flicker api ,如果我使用搜索方法,它工作正常
NSString *urlString = [NSString stringWithFormat: @“http://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=%@&tags=%@&per_page=15&format=json&nojsoncallback=1”, FlickrAPIKey,文本];
其中 text 是要搜索的术语,它工作正常,
但是当我想查看我的照片流时 “nabe_fan”;它不起作用!
这里是我使用的 json 调用,
NSString *urlString = [NSString stringWithFormat:@"http://api.flickr.com/services/rest/?method=flickr.photos.getContactsPublicPhotos&api_key=%@&user_id=nabe_fan", FlickrAPIKey];
但它不适用于我的用户名:NataliaBetaFan 或照片流:nabe_fan
我也可以在浏览器中检查这一点,当使用用户名时,给我找不到用户,
所以如何构造正确的 json 调用以仅显示我的用户流中的照片,
非常感谢!
编辑>
解决了! 感谢以下回复, 调用如下所示:
Im using the flicker api on an iphone app, its working fine if I use the search method
NSString *urlString = [NSString stringWithFormat:
@"http://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=%@&tags=%@&per_page=15&format=json&nojsoncallback=1", FlickrAPIKey, text];
where text is the term to search for,, it works ok,
but when I want to look at my photo stream "nabe_fan" ; it doesn work!
here the json call Im using,
NSString *urlString = [NSString stringWithFormat:@"http://api.flickr.com/services/rest/?method=flickr.photos.getContactsPublicPhotos&api_key=%@&user_id=nabe_fan", FlickrAPIKey];
but it doesnt work with my user name:NataliaBetaFan or with the photostream:nabe_fan
I can check this in the browser too, where when using the user name, gives me user not found,
so How to construct the correct json call to show just the pics in my user, stream,,
thanks a lot!
edit>
solved!
thanks to the below response,
the call looks like this:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所需的 user_id 是 NSID,而不是 Flickr 用户名。
首先使用 flickr.urls.lookupUser 获取 NSID,然后使用 user_id 字段中的返回值。
The user_id required is the NSID, not the Flickr username.
Use flickr.urls.lookupUser to get the NSID first, then use the returned value in your user_id field.