使用 Flickr API 进行身份验证,无需单击链接
在我正在开发的网站中,我必须使用 Flickr API 来访问客户的私人数据。 事实上,我只需要调用 flickr.tags.getListUserRaw,但不幸的是,似乎需要 auth。我想要做的是对我的客户端进行身份验证,而无需让他每次我的服务器端代码需要执行经过身份验证的调用时单击链接。 我无法找到一种方法来使用 flickr API 完成如此简单的事情,因此,如果有更聪明的人阅读本文,请帮助我。
In a website I'm working on, I must use the Flickr API to access the private data of my client.
In fact, I just need to call flickr.tags.getListUserRaw, but unfortunately, it seems like auth is required for that. What I want to do is authenticating my client without having him to click on a link each time my server side code need to perform an authenticated call.
I cannot managed to find a way to do such a simple thing with the flickr API, so, if there is a smarter guy reading this, help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果不要求用户第一次通过单击 Flickr 网站上的链接来授权您,就无法做到这一点,但是,一旦他们进行了一次身份验证,您就可以存储并重复使用他们的身份验证令牌,直到他们撤销您的应用程序的权限。
There's no way to do this without requiring the user to authorize you by clicking a link on Flickr's site the first time, however, once they've authenticated once, you can store and re-use their auth token until they revoke your application's permission.