通过 Yahoo ID 访问 Delicious API,无需重定向到 Yahoo 授权页面
更具体地说:
-
我的美味帐户是雅虎 ID,因此需要通过 OAuth 访问。
-
它仅供我用来添加/删除书签。我有密码。
-
这是一个命令行Python程序,不是基于Web的。
我的问题是:
是否可以在不重定向到 Yahoo OAuth 授权页面的情况下访问我的美味帐户?任何例子都值得赞赏。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可以,但前提是您必须完成一次授权流程,才能将您的帐户链接到您的应用程序。
之后,您可以使用原始请求提供的会话 ID 重新授权现有信息。
我认为 http://developer.yahoo.com/oauth/guide/oauth- freshaccesstoken.html 有详细信息。
Yes, but only if you go through the authorisation process once, to link your account to your application.
After that, you can re-authorise your existing information by using the session ID supplied from the original request.
I think http://developer.yahoo.com/oauth/guide/oauth-refreshaccesstoken.html has the detail.
您可能真正想要做的是设置
oauth_callback=oob
(越界)。它不会重定向您,而是为您提供一个验证码,供您粘贴到命令行中。此功能适用于像您这样的非基于网络的情况。另外,由于您使用的是 Python,因此您可以使用此技巧将浏览器启动到授权 url:
What you probably actually want to do is set
oauth_callback=oob
(out of bounds). Instead of redirecting you, it will give you a verification code for you to paste into your command line. This feature is meant for non-web based situations like yours.Also, since you're in Python you can use this trick to launch the a browser to the authorization url:
这是一个较老的问题,但自从雅虎出售了 Delicious 以来。 “新”Delicious 仍然与原始 API 兼容,但他们放弃了 OAuth 支持。 (它直接与雅虎的身份验证系统绑定,新公司当然无法访问该系统。)
否则,新的 API 大部分与以前的(非 OAuth)版本兼容:http://delicious.com/help/api
This is an older question, but since Yahoo has since sold off Delicious. The "new" Delicious is still compatible with the original API, but they have dropped the OAuth support. (It was tied directly to Yahoo's authentication system which the new company of course does not have access to.)
Otherwise the new API is mostly compatible with the previous (non-OAuth) version: http://delicious.com/help/api