通过 Yahoo ID 访问 Delicious API,无需重定向到 Yahoo 授权页面

发布于 2024-08-26 06:25:27 字数 226 浏览 5 评论 0 原文

更具体地说:

  1. 我的美味帐户是雅虎 ID,因此需要通过 OAuth 访问。

  2. 它仅供我用来添加/删除书签。我有密码。

  3. 这是一个命令行Python程序,不是基于Web的。

我的问题是:

是否可以在不重定向到 Yahoo OAuth 授权页面的情况下访问我的美味帐户?任何例子都值得赞赏。

To be more specific:

  1. My delicious account is a Yahoo ID so access via OAuth is required.

  2. It's for my use only to add/remove bookmarks. I have the password.

  3. It's a command line python program, not web-based.

My question is:

Is it possible to access my delicious account without being redirected to a Yahoo OAuth authorization page? Any examples are appreciated.

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

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

发布评论

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

评论(3

べ映画 2024-09-02 06:25:27

可以,但前提是您必须完成一次授权流程,才能将您的帐户链接到您的应用程序。

之后,您可以使用原始请求提供的会话 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.

双马尾 2024-09-02 06:25:27

您可能真正想要做的是设置oauth_callback=oob(越界)。它不会重定向您,而是为您提供一个验证码,供您粘贴到命令行中。此功能适用于像您这样的非基于网络的情况。

另外,由于您使用的是 Python,因此您可以使用此技巧将浏览器启动到授权 url:

import webbrowser
webbrowser.open(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:

import webbrowser
webbrowser.open(url)
逆夏时光 2024-09-02 06:25:27

这是一个较老的问题,但自从雅虎出售了 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

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