帮助在 Ruby 中刷新 Yahoo 的 OAuth 访问令牌

发布于 2024-11-01 08:09:13 字数 321 浏览 3 评论 0原文

当我尝试在 Ruby 中刷新 Yahoo OAuth 访问令牌时,我正处于非自愿脱发的境地。

使用 OmniAuth 和 OAuth gems,我可以从 Yahoo 获取访问令牌,但它会在一小时后过期。

我按照 Yahoo 说明刷新过期的令牌,并且始终返回 401。

如果有人可以向我展示如何使用 OAuth gem 刷新访问令牌,我将非常不胜感激。

I'm at the point of involuntary hair loss while trying to refresh the Yahoo OAuth access token in Ruby.

Using the OmniAuth and OAuth gems, I'm able to get an access token from Yahoo, however it expires in one hour.

I'm following the Yahoo instructions to refresh an expired token, and am consistently returned a 401.

If someone could show me how to refresh the access token using the OAuth gem, I'd be greatly appreciative.

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

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

发布评论

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

评论(2

孤独岁月 2024-11-08 08:09:13

首先,确保您保存原始 get_access_token 调用中的 oauth_session_handle 参数。

然后,当您希望刷新 access_token 时,请执行以下操作:

request_token = OAuth::RequestToken.new(consumer, 
                                        config["ACCESS_TOKEN"],             
                                        config["ACCESS_TOKEN_SECRET"])
token = OAuth::Token.new(config["ACCESS_TOKEN"],
                         config["ACCESS_TOKEN_SECRET"])
@access_token = request_token.get_access_token(
                         :oauth_session_handle => config["SESSION_HANDLE"],
                         :token => token)  

... 其中 ...

config["ACCESS_TOKEN"] is your old access token
config["ACCESS_TOKEN_SECRET"] is your old secret
config["SESSION_HANDLE"] is your oauth_session_handle
consumer is your OAuth::Consumer.new reference

我将配置变量存储在 yaml 文件中,然后在启动时加载它。

请记住存储 @access_token 以供下次使用。

我根据 YDN OAuth 论坛< 的答案改编了此内容/a>.

First, make sure you are saving your oauth_session_handle parameter from your original get_access_token call.

Then, when you are looking to refresh the access_token do something like this:

request_token = OAuth::RequestToken.new(consumer, 
                                        config["ACCESS_TOKEN"],             
                                        config["ACCESS_TOKEN_SECRET"])
token = OAuth::Token.new(config["ACCESS_TOKEN"],
                         config["ACCESS_TOKEN_SECRET"])
@access_token = request_token.get_access_token(
                         :oauth_session_handle => config["SESSION_HANDLE"],
                         :token => token)  

... where ...

config["ACCESS_TOKEN"] is your old access token
config["ACCESS_TOKEN_SECRET"] is your old secret
config["SESSION_HANDLE"] is your oauth_session_handle
consumer is your OAuth::Consumer.new reference

I store the config variable in a yaml file and then load it on startup.

Remember to store the @access_token for next time.

I adapted this from an answer at YDN OAuth Forum.

月野兔 2024-11-08 08:09:13

注意:oauth_session_handle 通过调用 get_access_token 作为参数返回:

access_token         = request_token.get_access_token(:oauth_verifier => oauth_verifier)  
oauth_session_handle = access_token.params['oauth_session_handle']

通过查看 oauth- ,这一点不太明显ruby/oauth 代码

Note: oauth_session_handle is returned as a param by the call to get_access_token:

access_token         = request_token.get_access_token(:oauth_verifier => oauth_verifier)  
oauth_session_handle = access_token.params['oauth_session_handle']

This was less than obvious from looking at the oauth-ruby/oauth code

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