如何查明用户是否拥有 flickr pro 帐户?

发布于 2024-08-20 21:33:13 字数 239 浏览 2 评论 0原文

我想知道如何判断用户是否拥有专业帐户?这是因为我对用户的上传文件大小限制感兴趣,该限制根据用户是否拥有专业帐户而有所不同。

我查看了 flickr 的官方 API 页面,但一无所获。 http://www.flickr.com/services/api/

有谁知道如何检索此信息?

I am trying to find out how I can tell if a user has a pro account? This is because I am interested in the upload file size limits for a user which differ based on whether the user has a pro account or not.

I looked on the official API pages of flickr but found nothing.
http://www.flickr.com/services/api/

Does anyone know how to retrieve this information?

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

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

发布评论

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

评论(1

半山落雨半山空 2024-08-27 21:33:13

从您引用的文档中,对于 flickr.people.getInfo ,调用返回,例如:

#                              vvvvvvvvv
<person nsid="12037949754@N01" ispro="0" iconserver="122" iconfarm="1">
    <username>bees</username>
    <realname>Cal Henderson</realname>
        <mbox_sha1sum>eea6cd28e3d0003ab51b0058a684d94980b727ac</mbox_sha1sum>
    <location>Vancouver, Canada</location>
    <photosurl>http://www.flickr.com/photos/bees/</photosurl> 
    <profileurl>http://www.flickr.com/people/bees/</profileurl> 
    <photos>
        <firstdate>1071510391</firstdate>
        <firstdatetaken>1900-09-02 09:11:24</firstdatetaken>
        <count>449</count>
    </photos>
</person>

在“API 方法”/“人员”下的右侧结束。

From the documentation you quoted, for flickr.people.getInfo, the call returns, e.g.:

#                              vvvvvvvvv
<person nsid="12037949754@N01" ispro="0" iconserver="122" iconfarm="1">
    <username>bees</username>
    <realname>Cal Henderson</realname>
        <mbox_sha1sum>eea6cd28e3d0003ab51b0058a684d94980b727ac</mbox_sha1sum>
    <location>Vancouver, Canada</location>
    <photosurl>http://www.flickr.com/photos/bees/</photosurl> 
    <profileurl>http://www.flickr.com/people/bees/</profileurl> 
    <photos>
        <firstdate>1071510391</firstdate>
        <firstdatetaken>1900-09-02 09:11:24</firstdatetaken>
        <count>449</count>
    </photos>
</person>

Was over at the right under 'API Methods'/'People'.

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