QTweetLib 和 request_token

发布于 2024-12-24 17:34:54 字数 759 浏览 2 评论 0原文

我刚刚在我的 Linux 主机上编译了 QTweetLib。我已编译并运行 pinauthstatusupdate 示例,没有任何更改。但是当我尝试获取 request_token 时,我得到:

无法验证 oauth 签名和令牌

我在主机上同步时间:

使用 sudo ntpdate pool.ntp.org

但没有改变...

我用 Twitter 为我的应用程序创建的密钥更改了消费者密钥。但我遇到了同样的问题。

我使用 http://quonos.nl/oauthTester/ 检查了基本字符串,它说我的基本字符串没问题。

这是 QTweetLib 创建的原始标头:

OAuth oauth_consumer_key =“YImPrR11sLxv0ZjjKAskA”,oauth_signature_method =“HMAC-SHA1”,oauth_signature =“WQnBaTgyuU” 6HkPT7DqTkNK1MT5c%3D",oauth_timestamp="1325542113",oauth_nonce="J5oUsjoOE34e1iTE",oauth_version="1.0"

那么问题出在哪里呢?

I've just compiled QTweetLib on my linux host. I've compiled and run pinauthstatusupdate example without any changes. But when I try to get request_token I've get:

Failed to validate oauth signature and token

I synced time on my host:

using sudo ntpdate pool.ntp.org

But no changes...

The I changed consumer keys with keys which Twitter creates for my application. But I got same problem.

I checked the base string using http://quonos.nl/oauthTester/ and it says my base string is OK.

Here is raw header which QTweetLib creates:

OAuth
oauth_consumer_key="YImPrR11sLxv0ZjjKAskA",oauth_signature_method="HMAC-SHA1",oauth_signature="WQnBaTgyuU6HkPT7DqTkNK1MT5c%3D",oauth_timestamp="1325542113",oauth_nonce="J5oUsjoOE34e1iTE",oauth_version="1.0"

So what's the problem?

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

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

发布评论

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

评论(1

路还长,别太狂 2024-12-31 17:34:54

根据 QTweetLib 的自述文件,它仅支持 xAuth。您的 Twitter 应用程序 xAuth 启用了吗?如果没有,您需要通过发送电子邮件至 [email protected] 来请求为您的应用程序启用它] 并说明不能只使用 OAuth 的一些正当理由。

您看过 KQOAuth (http://www.d-pointer.com/solutions/kqoauth/) 吗?它通过利用环境的 Web 浏览器和临时本地 Web 服务器来支持“正常”OAuth。我想我在某处读到它可能会以某种形式集成到 Qt5 中,因此它可能是比 QTweetLib 更安全的选择。

According to QTweetLib's readme it supports only xAuth. Is your Twitter application xAuth enabled? If not you need to request it to be enabled for your application by sending email to [email protected] and stating some valid reasons why you can't just use OAuth.

Have you looked at KQOAuth (http://www.d-pointer.com/solutions/kqoauth/)? It supports 'normal' OAuth by utilizing the web browser of the environment and a temporary local web server. I think I read somewhere that it might get integrated to Qt5 in some form and thus it would probably be a safer bet than QTweetLib.

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