util_extract_from_uri


Description:

[ Version ( since = "3.48" ) ]
public static bool util_extract_from_uri (string in_uri, out string? out_authorization_code, out string? out_error_code, out string? out_error_description)

Extracts either an authorization code from a 'code' argument of the in_uri, or an error code from an 'error' argument of the in_uri and an error description from the 'error_description' argument of the in_uri.

Parameters:

in_uri

a URI returned from the server

out_authorization_code

extracted authorization code, can be null

out_error_code

extracted error code, can be null

out_error_description

extracted error description, can be null

Returns:

true, when any of the non-NULL out arguments had been populated.