gpt4 book ai didi

qt - Qt 测试应用程序的 OAuth 实现

转载 作者:行者123 更新时间:2023-12-04 16:07:33 25 4
gpt4 key购买 nike

我正在学习 OAuth 在我的 Qt 应用程序中实现。我使用了 this用于 twitter 身份验证的测试应用程序的分步文档。这是以下代码:-

 ox1 = new OXTwitter(this);

ox1->setClientId("client-id");//Id got from twitter application created.
ox1->setClientSecret("secret-key");//secret key got from application.
ox1->setUsername("user-id");
ox1->setPassword("password");

connect(ox1, SIGNAL(linkedChanged()), this, SLOT(onLinkedChanged()));
connect(ox1, SIGNAL(linkingFailed()), this, SLOT(onLinkingFailed()));
connect(ox1, SIGNAL(linkingSucceeded()), this, SLOT(onLinkingSucceeded()));
connect(ox1, SIGNAL(openBrowser(QUrl)), this, SLOT(onOpenBrowser(QUrl)));
connect(ox1, SIGNAL(closeBrowser()), this, SLOT(onCloseBrowser()));
ox1->link();

但是我收到以下错误。我已经在 twitter 应用程序中创建了一个测试应用程序,并在我的代码中使用了 key ,但我仍然不知道这个错误。

OXTwitter::link O1:nTokenExchangeError: 202 "Error downloading https://api.twitter.com/oauth/access_token - server replied: Forbidden" "Client is not permitted to perform this action" Login has failed

最佳答案

不是代码的问题。

如果您遇到此问题,请从与应用程序关联的电子邮件地址写信至 api@twitter.com。包括受影响的消费者 key ,API 政策团队会尽快让您进行设置。当您从自动化系统收到一封电子邮件时,请务必同时回复该电子邮件。

关于qt - Qt 测试应用程序的 OAuth 实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35560128/

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