Back to Aurora Vision Library website

You are here: Start » Function Reference » System » OAuth » EndOAuthAuthorization

EndOAuthAuthorization


Header: AVL.h
Namespace: avl
Module: FoundationBasic

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#
 
void avl::EndOAuthAuthorization
(
	avl::OAuthProvider::Type inProvider,
	const atl::Optional<int>& inTimeout,
	atl::Conditional<avl::OAuthUser>& outUser,
	atl::Conditional<atl::String>& outError
)

Parameters

Name Type Default Description
Input value inProvider OAuthProvider::Type Authorization provider
Input value inTimeout const Optional<int>& NIL The timeout in milliseconds.
Output value outUser Conditional<OAuthUser>& The authenticated OAuth user or NIL if the timeout has elapsed.
Output value outError Conditional<String>&