summaryrefslogtreecommitdiffstats
path: root/src/oauth/qoauth2authorizationcodeflow_p.h
diff options
context:
space:
mode:
authorJuha Vuolle <juha.vuolle@qt.io>2024-11-05 13:53:36 +0200
committerJuha Vuolle <juha.vuolle@qt.io>2024-11-21 12:17:42 +0200
commit1dc8abddc717abcfcec9828b492d92168cee8fa0 (patch)
tree328755261fd646ba1c2ce7a8a308ef2abe876266 /src/oauth/qoauth2authorizationcodeflow_p.h
parent45a7b3f3ecdd29357f5aaed2708c5c9710c04a35 (diff)
Move token request response handling to baseclass private
This way it can be shared with the upcoming device flow implementation. Change-Id: I0dcd20dcb84b5af2e57f592b99fe82d04470ffe7 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'src/oauth/qoauth2authorizationcodeflow_p.h')
-rw-r--r--src/oauth/qoauth2authorizationcodeflow_p.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/oauth/qoauth2authorizationcodeflow_p.h b/src/oauth/qoauth2authorizationcodeflow_p.h
index ec330ac..d60eaa8 100644
--- a/src/oauth/qoauth2authorizationcodeflow_p.h
+++ b/src/oauth/qoauth2authorizationcodeflow_p.h
@@ -39,7 +39,6 @@ public:
QNetworkAccessManager *manager = nullptr);
void _q_handleCallback(const QVariantMap &data);
- void _q_accessTokenRequestFinished(const QVariantMap &values);
void _q_authenticate(QNetworkReply *reply, QAuthenticator *authenticator);
QByteArray createPKCEChallenge();
@@ -50,7 +49,6 @@ public:
QByteArray pkceCodeVerifier;
QUrl accessTokenUrl;
- QString tokenType;
QPointer<QNetworkReply> currentReply;
};