gpt4 book ai didi

java - 尝试使用 play.libs.OAuth 连接到 Twitter 时出现错误 401

转载 作者:搜寻专家 更新时间:2023-11-01 00:58:14 25 4
gpt4 key购买 nike

我正在使用 Play Framework 和 play.libs.OAuth,尝试使用以下代码连接到 Twitter:

public static void twitterConnect()
{
Response response;
ServiceInfo twitterServiceInfo = new ServiceInfo(
"https://api.twitter.com/oauth/request_token",
"https://api.twitter.com/oauth/access_token",
"https://api.twitter.com/oauth/authorize",
"ZA*****************Dw",
"Zy*************************************U4");

if(OAuth.isVerifierResponse()) {
// ...
} else {
OAuth twitter = OAuth.service(twitterServiceInfo);
response = twitter.retrieveRequestToken(); <-- NOT WORKING!!!
redirect(twitter.redirectUrl(response.token));
}
}

但在标记为 <-- NOT WORKING!!! 的行中我收到以下错误:

OAuth.Error: NOT_AUTHORIZED - Authorization failed (server replied with a 401). This can happen if the consumer key was not correct or the signatures did not match.

我仔细检查了我的消费者 key 和 secret ,以及请求、访问和授权 URL,但无济于事。

关于我的代码有什么问题有什么想法吗?

最佳答案

我删除了 OAuth 代码,并使用 Fernandez Pablo 编写的 Scribe 库重新实现。看来我现在更进一步了。 :)

关于java - 尝试使用 play.libs.OAuth 连接到 Twitter 时出现错误 401,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7262835/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com