EndOAuthAuthorization


Waits until the verification flow is completed at the verification url. Once the flow is ended, retrieves the information of the currently signed in OAuth user.

Syntax

C++
C#
Python
 
def EndOAuthAuthorization(
	inProvider: OAuthProvider,
	/,
	*,
	inTimeout: int | None = None
)
-> (
	outUser: OAuthUser | None,
	outError: str | None
)

Parameters

Name Type Default Description
Input value inProvider OAuthProvider Authorization provider
Input value inTimeout int | None None The timeout in milliseconds.
Output value outUser OAuthUser | None The authenticated OAuth user or NIL if the timeout has elapsed.
Output value outError str | None