flickr json 休息呼叫不起作用

发布于 2024-11-30 18:42:13 字数 1387 浏览 0 评论 0原文

我在 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 调用以仅显示我的用户流中的照片,

非常感谢!

编辑>

解决了! 感谢以下回复, 调用如下所示:

http://api.flickr.com/services/rest/?&method=flickr.people.getPublicPhotos&api_key=FLICKERKEY&user_id=66591366@N02&per_page=15&format=json&nojsoncallback =1

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:

http://api.flickr.com/services/rest/?&method=flickr.people.getPublicPhotos&api_key=FLICKERKEY&user_id=66591366@N02&per_page=15&format=json&nojsoncallback=1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

维持三分热 2024-12-07 18:42:13

所需的 user_id 是 NSID,而不是 Flickr 用户名

user_id(可选)

要搜索照片的用户的 NSID。如果这个参数
不通过则所有人的公开照片都会被搜索。一个值
“我”的搜索将根据呼叫用户的照片进行搜索
经过身份验证的呼叫。

首先使用 flickr.urls.lookupUser 获取 NSID,然后使用 user_id 字段中的返回值。

The user_id required is the NSID, not the Flickr username.

user_id (Optional)

The NSID of the user who's photo to search. If this parameter
isn't passed then everybody's public photos will be searched. A value
of "me" will search against the calling user's photos for
authenticated calls.

Use flickr.urls.lookupUser to get the NSID first, then use the returned value in your user_id field.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文