QAbstractOAuth2 Class

The QAbstractOAuth2 class is the base of all implementations of OAuth 2 authentication methods. 更多...

头: #include <QAbstractOAuth2>
CMake: find_package(Qt6 REQUIRED COMPONENTS NetworkAuth)
target_link_libraries(mytarget PRIVATE Qt6::NetworkAuth)
qmake: QT += networkauth
继承: QAbstractOAuth
继承者:

QOAuth2AuthorizationCodeFlow and QOAuth2DeviceAuthorizationFlow

公共类型

(从 6.9 起) 枚举类 NonceMode { Automatic, Enabled, Disabled }

特性

公共函数

QAbstractOAuth2 (QObject * parent = nullptr)
QAbstractOAuth2 (QNetworkAccessManager * manager , QObject * parent = nullptr)
virtual ~QAbstractOAuth2 ()
bool autoRefresh () const
void clearNetworkRequestModifier ()
QString clientIdentifierSharedKey () const
virtual QUrl createAuthenticatedUrl (const QUrl & url , const QVariantMap & 参数 = QVariantMap())
QDateTime expirationAt () const
QSet<QByteArray> grantedScopeTokens () const
QString idToken () const
QString nonce () const
QAbstractOAuth2::NonceMode nonceMode () const
(until 6.11) virtual QNetworkReply * post (const QUrl & url , QHttpMultiPart * multiPart )
(until 6.11) virtual QNetworkReply * post (const QUrl & url , const QByteArray & data )
(until 6.11) virtual QNetworkReply * put (const QUrl & url , QHttpMultiPart * multiPart )
(until 6.11) virtual QNetworkReply * put (const QUrl & url , const QByteArray & data )
std::chrono::seconds refreshLeadTime () const
QString refreshToken () const
QSet<QByteArray> requestedScopeTokens () const
QString responseType () const
QString scope () const
void setAutoRefresh (bool enable )
void setClientIdentifierSharedKey (const QString & clientIdentifierSharedKey )
(从 6.9 起) void setNetworkRequestModifier (const QAbstractOAuth2::ContextTypeForFunctor<Functor> * context , Functor && callback )
void setNonce (const QString & nonce )
void setNonceMode (QAbstractOAuth2::NonceMode mode )
void setRefreshLeadTime (std::chrono::seconds leadTime )
void setRefreshToken (const QString & refreshToken )
void setRequestedScopeTokens (const QSet<QByteArray> & tokens )
void setScope (const QString & scope )
(从 6.5 起) void setSslConfiguration (const QSslConfiguration & configuration )
void setState (const QString & state )
void setTokenUrl (const QUrl & tokenUrl )
void setUserAgent (const QString & userAgent )
(从 6.5 起) QSslConfiguration sslConfiguration () const
QString state () const
QUrl tokenUrl () const
QString userAgent () const

重实现公共函数

(until 6.11) virtual QNetworkReply * deleteResource (const QUrl & url , const QVariantMap & 参数 = QVariantMap()) override
(until 6.11) virtual QNetworkReply * get (const QUrl & url , const QVariantMap & 参数 = QVariantMap()) override
(until 6.11) virtual QNetworkReply * head (const QUrl & url , const QVariantMap & 参数 = QVariantMap()) override
(until 6.11) virtual QNetworkReply * post (const QUrl & url , const QVariantMap & 参数 = QVariantMap()) override
virtual void prepareRequest (QNetworkRequest * request , const QByteArray & verb , const QByteArray & body = QByteArray()) override
(until 6.11) virtual QNetworkReply * put (const QUrl & url , const QVariantMap & 参数 = QVariantMap()) override

公共槽

(从 6.9 起) void refreshTokens ()

信号

(从 6.9 起) void accessTokenAboutToExpire ()
void authorizationCallbackReceived (const QVariantMap & data )
void autoRefreshChanged (bool enable )
void clientIdentifierSharedKeyChanged (const QString & clientIdentifierSharedKey )
(until 6.13) void error (const QString & error , const QString & errorDescription , const QUrl & uri )
void expirationAtChanged (const QDateTime & expiration )
void grantedScopeTokensChanged (const QSet<QByteArray> & tokens )
void idTokenChanged (const QString & idToken )
void nonceChanged (const QString & nonce )
void nonceModeChanged (QAbstractOAuth2::NonceMode mode )
void refreshLeadTimeChanged (std::chrono::seconds leadTime )
void refreshTokenChanged (const QString & refreshToken )
void requestedScopeTokensChanged (const QSet<QByteArray> & tokens )
void scopeChanged (const QString & scope )
(从 6.9 起) void serverReportedErrorOccurred (const QString & error , const QString & errorDescription , const QUrl & uri )
(从 6.5 起) void sslConfigurationChanged (const QSslConfiguration & configuration )
void stateChanged (const QString & state )
void tokenUrlChanged (const QUrl & tokenUrl )
void userAgentChanged (const QString & userAgent )

保护槽

(从 6.9 起) void refreshTokensImplementation ()

详细描述

The class defines the basic interface of the OAuth 2 authentication classes. By inheriting this class, you can create custom authentication methods using the OAuth 2 standard for different web services.

A description of how OAuth 2 works can be found in: The OAuth 2.0 Authorization Framework

成员类型文档编制

[since 6.9] enum class QAbstractOAuth2:: NonceMode

List of available nonce 模式。

常量 描述
QAbstractOAuth2::NonceMode::Automatic 0 Nonce is sent if the requested scope 包含 openid . This is the default mode, and sends nonce only when it's relevant to OIDC authentication flows.
QAbstractOAuth2::NonceMode::Enabled 1 Nonce is sent during authorization stage.
QAbstractOAuth2::NonceMode::Disabled 2 Nonce is not sent during authorization stage.

This enum was introduced in Qt 6.9.

另请参阅 nonce and OAuth 2.0 概述 .

特性文档编制

[since 6.9] autoRefresh : bool

This property enables or disables automatic refresh of the access token.

This property enables or disables the automatic refresh of the access token. This is useful for applications that require uninterrupted authorization without user intervention.

若此特性为 true , refreshTokens () will be automatically called when the token is about to expire and a valid refreshToken exists.

该特性在 Qt 6.9 引入。

访问函数:

bool autoRefresh () const
void setAutoRefresh (bool enable )

通知程序信号:

void autoRefreshChanged (bool enable )

另请参阅 refreshLeadTime and accessTokenAboutToExpire ().

clientIdentifierSharedKey : QString

This property holds the client shared key used as a password if the server requires authentication to request the token.

访问函数:

QString clientIdentifierSharedKey () const
void setClientIdentifierSharedKey (const QString & clientIdentifierSharedKey )

通知程序信号:

void clientIdentifierSharedKeyChanged (const QString & clientIdentifierSharedKey )

[read-only] expiration : const QDateTime

This property holds the expiration time of the current access token. An invalid value means that the authorization server hasn't provided a valid expiration time.

访问函数:

QDateTime expirationAt () const

通知程序信号:

void expirationAtChanged (const QDateTime & expiration )

另请参阅 QDateTime::isValid ().

[read-only, since 6.9] grantedScopeTokens : const QSet < QByteArray >

This property holds the scope granted by the authorization server.

The requested and granted scope may differ. End-user may have opted to grant only a subset of the scope, or server-side policies may change it. The application should be prepared to handle this scenario, and check the granted scope to see if it should impact the application logic.

The server may omit indicating the granted scope altogether, as defined by RFC 6749 . In this case the implementation assumes the granted scope is the same as the requested scope.

该特性在 Qt 6.9 引入。

访问函数:

QSet<QByteArray> grantedScopeTokens () const

通知程序信号:

void grantedScopeTokensChanged (const QSet<QByteArray> & tokens )

另请参阅 QAbstractOAuth2::requestedScopeTokens .

[read-only, since 6.9] idToken : const QString

This property holds the received OpenID Connect ID token .

该特性在 Qt 6.9 引入。

访问函数:

QString idToken () const

通知程序信号:

void idTokenChanged (const QString & idToken )

另请参阅 NonceMode , nonce ,和 Qt OpenID Connect Support .

[since 6.9] nonce : QString

This property holds the string sent to the server during authentication. The nonce is used to associate applicable token responses (OpenID Connect id_token in particular) with the authorization stage.

The primary purpose of the nonce is to mitigate replay attacks. It ensures that the token responses received are in response to the authentication requests initiated by the application, preventing attackers from reusing tokens in unauthorized contexts. Therefore, it's important to include nonce verification as part of the token validation.

In practice, authorization server vendors may refuse the OpenID Connect request if a nonce isn't provided in the Authorization request .

The token itself is an opaque string, and should contain only URL-safe characters for maximum compatibility. Further the token must provide adequate entropy so that it's unguessable to attackers . There are no strict size limits for nonce, and authorization server vendors may impose their own minimum and maximum sizes.

While the nonce can be set manually, Qt classes will generate a 32-character nonce when needed if one isn't set.

该特性在 Qt 6.9 引入。

访问函数:

QString nonce () const
void setNonce (const QString & nonce )

通知程序信号:

void nonceChanged (const QString & nonce )

另请参阅 nonceMode and Qt OpenID Connect Support .

[since 6.9] nonceMode : NonceMode

This property holds the current nonce mode (whether or not nonce is used).

该特性在 Qt 6.9 引入。

访问函数:

QAbstractOAuth2::NonceMode nonceMode () const
void setNonceMode (QAbstractOAuth2::NonceMode mode )

通知程序信号:

void nonceModeChanged (QAbstractOAuth2::NonceMode mode )

另请参阅 NonceMode and nonce .

[since 6.9] refreshLeadTime : std::chrono::seconds

This property defines how far in advance accessTokenAboutToExpire () signal is emitted relative to the access token's expiration.

This property specifies the time interval (in seconds) before the current access token’s expiration, when accessTokenAboutToExpire () signal is emitted. The value set for this property must be a positive duration.

This interval allows the application to refresh the token well in advance, ensuring continuous authorization without interruptions.

If this property is not explicitly set, or the provided leadTime is larger than the token's lifetime, the leadTime defaults to 5% of the token's remaining lifetime, but not less than 10 seconds ahead of expiration (leaving time for the refresh request to complete).

注意: Expiration signal only works if the authorization server has provided a proper expiration time.

该特性在 Qt 6.9 引入。

访问函数:

std::chrono::seconds refreshLeadTime () const
void setRefreshLeadTime (std::chrono::seconds leadTime )

通知程序信号:

void refreshLeadTimeChanged (std::chrono::seconds leadTime )

另请参阅 autoRefresh .

[since 6.9] requestedScopeTokens : QSet < QByteArray >

This property holds the desired scope which defines the permissions requested by the client.

注意: Scope tokens are limited to a subset of printable US-ASCII characters. Using characters outside this range is not supported.

该特性在 Qt 6.9 引入。

访问函数:

QSet<QByteArray> requestedScopeTokens () const
void setRequestedScopeTokens (const QSet<QByteArray> & tokens )

通知程序信号:

void requestedScopeTokensChanged (const QSet<QByteArray> & tokens )

另请参阅 QAbstractOAuth2::grantedScopeTokens .

[until 6.13] scope : QString

This property is scheduled for deprecation in version 6.13.

使用 requestedScopeTokens and grantedScopeTokens properties instead. This property will be removed in Qt 7.

This property holds the desired scope which defines the permissions requested by the client.

The scope value is updated to the scope value granted by the authorization server. In case of an empty scope response, the requested scope is assumed as granted and does not change .

The fact that this property serves two different roles, first as the requested scope and later as the granted scope, is an historical artefact. All new code is recommended to use QAbstractOAuth2::requestedScopeTokens and QAbstractOAuth2::grantedScopeTokens .

访问函数:

QString scope () const
void setScope (const QString & scope )

通知程序信号:

void scopeChanged (const QString & scope )

另请参阅 QAbstractOAuth2::grantedScopeTokens and QAbstractOAuth2::requestedScopeTokens .

state : QString

This property holds the string sent to the server during authentication. The state is used to identify and validate the request when the callback is received.

Certain characters are illegal in the state element (see RFC 6749 ). The use of illegal characters could lead to an unintended state mismatch and a failing OAuth 2 authorization. Therefore, if you attempt to set a value that contains illegal characters, the state is ignored and a warning is logged.

访问函数:

QString state () const
void setState (const QString & state )

通知程序信号:

void stateChanged (const QString & state )

[since 6.9] tokenUrl : QUrl

This property holds the token endpoint URL which is used to obtain tokens. Depending on the use case and authorization server support, these tokens can be access tokens, refresh tokens, and ID tokens.

Tokens are typically retrieved once the authorization stage is completed, and the token endpoint can also be used to refresh tokens as needed.

例如, QOAuth2AuthorizationCodeFlow uses this url to issue an access token request ,和 QOAuth2DeviceAuthorizationFlow uses this url to poll for an access token .

该特性在 Qt 6.9 引入。

访问函数:

QUrl tokenUrl () const
void setTokenUrl (const QUrl & tokenUrl )

通知程序信号:

void tokenUrlChanged (const QUrl & tokenUrl )

userAgent : QString

This property holds the User-Agent header used to create the network requests.

The default value is "QtOAuth/1.0 (+https://www.qt.io)".

访问函数:

QString userAgent () const
void setUserAgent (const QString & userAgent )

通知程序信号:

void userAgentChanged (const QString & userAgent )

成员函数文档编制

[explicit] QAbstractOAuth2:: QAbstractOAuth2 ( QObject * parent = nullptr)

Constructs a QAbstractOAuth2 object using parent 作为父级。

[explicit] QAbstractOAuth2:: QAbstractOAuth2 ( QNetworkAccessManager * manager , QObject * parent = nullptr)

Constructs a QAbstractOAuth2 object using parent as parent and sets manager as the network access manager.

[virtual noexcept] QAbstractOAuth2:: ~QAbstractOAuth2 ()

销毁 QAbstractOAuth2 实例。

[signal, since 6.9] void QAbstractOAuth2:: accessTokenAboutToExpire ()

The signal is emitted when the access token is about to expire.

Emitting this signal requires that the access token has a valid expiration time. An alternative for handling this signal manually is to use autoRefresh .

该函数在 Qt 6.9 引入。

另请参阅 refreshLeadTime , autoRefresh ,和 refreshTokens ().

[signal] void QAbstractOAuth2:: authorizationCallbackReceived (const QVariantMap & data )

Signal emitted when the reply server receives the authorization callback from the server: data contains the values received from the server.

void QAbstractOAuth2:: clearNetworkRequestModifier ()

Clears the network request modifier.

另请参阅 setNetworkRequestModifier ().

[virtual invokable] QUrl QAbstractOAuth2:: createAuthenticatedUrl (const QUrl & url , const QVariantMap & 参数 = QVariantMap())

The returned URL is based on url , combining it with the given parameters and the access token.

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

[override virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: deleteResource (const QUrl & url , const QVariantMap & 参数 = QVariantMap())

This function is scheduled for deprecation in version 6.11.

重实现: QAbstractOAuth::deleteResource (const QUrl &url, const QVariantMap ¶meters).

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated DELETE request and returns a new QNetworkReply url and parameters are used to create the request.

另请参阅 : Hypertext Transfer Protocol – HTTP/1.1: DELETE

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

[signal, until 6.13] void QAbstractOAuth2:: error (const QString & error , const QString & errorDescription , const QUrl & uri )

该函数计划在 6.13 版弃用。

使用 serverReportedErrorOccurred 代替

Signal emitted when the server responds to the authorization request with an error as defined in RFC 6749 error response .

error is the name of the error; errorDescription describes the error and uri is an optional URI containing more information about the error.

另请参阅 QAbstractOAuth::requestFailed () 和 QAbstractOAuth2::serverReportedErrorOccurred ().

[override virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: get (const QUrl & url , const QVariantMap & 参数 = QVariantMap())

This function is scheduled for deprecation in version 6.11.

重实现: QAbstractOAuth::get (const QUrl &url, const QVariantMap ¶meters).

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated GET request and returns a new QNetworkReply url and parameters are used to create the request.

另请参阅 : Hypertext Transfer Protocol – HTTP/1.1: GET

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

This function is scheduled for deprecation in version 6.11.

重实现: QAbstractOAuth::head (const QUrl &url, const QVariantMap ¶meters).

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated HEAD request and returns a new QNetworkReply url and parameters are used to create the request.

另请参阅 : Hypertext Transfer Protocol – HTTP/1.1: HEAD

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

[override virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: post (const QUrl & url , const QVariantMap & 参数 = QVariantMap())

This function is scheduled for deprecation in version 6.11.

重实现: QAbstractOAuth::post (const QUrl &url, const QVariantMap ¶meters).

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated POST request and returns a new QNetworkReply url and parameters are used to create the request.

另请参阅 : Hypertext Transfer Protocol – HTTP/1.1: POST

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

[virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: post (const QUrl & url , QHttpMultiPart * multiPart )

This function is scheduled for deprecation in version 6.11.

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated POST request and returns a new QNetworkReply url and multiPart are used to create the request.

{Hypertext Transfer Protocol – HTTP/1.1: POST}

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

这是重载函数。

另请参阅 post (), QHttpMultiPart ,和 https://tools.ietf.org/html/rfc2616#section-9.6 .

[virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: post (const QUrl & url , const QByteArray & data )

This function is scheduled for deprecation in version 6.11.

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated POST request and returns a new QNetworkReply url and data are used to create the request.

{Hypertext Transfer Protocol – HTTP/1.1: POST}

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

这是重载函数。

另请参阅 post () 和 https://tools.ietf.org/html/rfc2616#section-9.6 .

[override virtual] void QAbstractOAuth2:: prepareRequest ( QNetworkRequest * request , const QByteArray & verb , const QByteArray & body = QByteArray())

重实现: QAbstractOAuth::prepareRequest (QNetworkRequest *request, const QByteArray &verb, const QByteArray &body).

[override virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: put (const QUrl & url , const QVariantMap & 参数 = QVariantMap())

This function is scheduled for deprecation in version 6.11.

重实现: QAbstractOAuth::put (const QUrl &url, const QVariantMap ¶meters).

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated PUT request and returns a new QNetworkReply url and parameters are used to create the request.

另请参阅 : Hypertext Transfer Protocol – HTTP/1.1: PUT

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

[virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: put (const QUrl & url , QHttpMultiPart * multiPart )

This function is scheduled for deprecation in version 6.11.

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated PUT request and returns a new QNetworkReply url and multiPart are used to create the request.

{Hypertext Transfer Protocol – HTTP/1.1: PUT}

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

这是重载函数。

另请参阅 put (), QHttpMultiPart ,和 https://tools.ietf.org/html/rfc2616#section-9.6 .

[virtual invokable, until 6.11] QNetworkReply *QAbstractOAuth2:: put (const QUrl & url , const QByteArray & data )

This function is scheduled for deprecation in version 6.11.

Please use QtNetwork classes directly instead, see HTTP method alternatives .

Sends an authenticated PUT request and returns a new QNetworkReply url and data are used to create the request.

{Hypertext Transfer Protocol – HTTP/1.1: PUT}

注意: 此函数可以被援引,通过元对象系统和从 QML。见 Q_INVOKABLE .

这是重载函数。

另请参阅 put () 和 https://tools.ietf.org/html/rfc2616#section-9.6 .

QString QAbstractOAuth2:: refreshToken () const

Gets the current refresh token.

Refresh tokens usually have longer lifespans than access tokens, so it makes sense to save them for later use.

Returns the current refresh token or an empty string, if there is no refresh token available.

注意: Getter function for property refreshToken.

另请参阅 setRefreshToken ().

[slot, since 6.9] void QAbstractOAuth2:: refreshTokens ()

Call this function to refresh the tokens. The function calls refreshTokensImplementation () to perform the actual refresh.

该函数在 Qt 6.9 引入。

另请参阅 refreshTokensImplementation () 和 autoRefresh .

[protected slot, since 6.9] void QAbstractOAuth2:: refreshTokensImplementation ()

此槽被调用通过 refreshTokens () to send the token refresh request.

The derived classes should reimplement this slot to support token refreshing:

class MyClass : public QAbstractOAuth2
{
    ...
protected Q_SLOTS:
    void refreshTokensImplementation() QT7_ONLY(override);
};
void MyClass::refreshTokensImplementation()
{
    qDebug("refresh");
}
					

该函数在 Qt 6.9 引入。

另请参阅 autoRefresh and accessTokenAboutToExpire ().

QString QAbstractOAuth2:: responseType () const

返回 response_type used.

[signal, since 6.9] void QAbstractOAuth2:: serverReportedErrorOccurred (const QString & error , const QString & errorDescription , const QUrl & uri )

Signal emitted when the server responds to the authorization request with an error as defined in RFC 6749 error response .

error is the name of the error; errorDescription describes the error and uri is an optional URI containing more information about the error.

To catch all errors, including these RFC defined errors, with a single signal, use QAbstractOAuth::requestFailed ().

该函数在 Qt 6.9 引入。

[since 6.9] template <typename Functor, QAbstractOAuth2::if_compatible_callback<Functor> = true> void QAbstractOAuth2:: setNetworkRequestModifier (const QAbstractOAuth2::ContextTypeForFunctor < Functor > * context , Functor && callback )

Sets the network request modification function to callback . This function is used to customize the network requests sent to the server.

callback has to implement the signature void(QNetworkRequest&, QAbstractOAuth::Stage) . The provided QNetworkRequest can be directly modified, and it is used right after the callback finishes. callback can be a function pointer, lambda, member function, or any callable object. The provided QAbstractOAuth::Stage can be used to check to which stage the request relates to (token request, token refresh request, or authorization request in case of QOAuth2DeviceAuthorizationFlow ).

context controls the lifetime of the calls, and prevents access to de-allocated resources in case context is destroyed. In other words, if the object provided as context is destroyed, callbacks won't be executed. context must point to a valid QObject (and in case the callback is a member function, it needs to actually have it). Since the callback's results are used immediately, context must reside in the same thread as the QAbstractOAuth2 实例。

该函数在 Qt 6.9 引入。

另请参阅 clearNetworkRequestModifier () 和 QNetworkRequest .

void QAbstractOAuth2:: setRefreshToken (const QString & refreshToken )

Sets the new refresh token refreshToken to be used.

A custom refresh token can be used to refresh the access token via this method and then the access token can be refreshed via refreshTokens ().

注意: setter 函数对于特性 refreshToken .

另请参阅 refreshToken ().

[since 6.5] void QAbstractOAuth2:: setSslConfiguration (const QSslConfiguration & configuration )

Sets the TLS configuration to be used when establishing a mutual TLS connection between the client and the Authorization Server.

该函数在 Qt 6.5 引入。

另请参阅 sslConfiguration () 和 sslConfigurationChanged ().

[since 6.5] QSslConfiguration QAbstractOAuth2:: sslConfiguration () const

Returns the TLS configuration to be used when establishing a mutual TLS connection between the client and the Authorization Server.

该函数在 Qt 6.5 引入。

另请参阅 setSslConfiguration () 和 sslConfigurationChanged ().

[signal, since 6.5] void QAbstractOAuth2:: sslConfigurationChanged (const QSslConfiguration & configuration )

The signal is emitted when the TLS configuration has changed. The configuration parameter contains the new TLS configuration.

该函数在 Qt 6.5 引入。

另请参阅 sslConfiguration () 和 setSslConfiguration ().