|
|
|
|
OpenIDReadIdentity (Function) In french: OpenIDLitIdentité Retrieves the identity of a user contained in an AuthToken variable. Remark: This function can be used in the case of authentication using the OAuth 2.0 protocol on any Webservice. OpenIDParams is OpenIDParameters OpenIDParams.ConfigurationURL = "https://accounts.google.com/.well-known/openid-configuration" OpenIDParams.ClientID = "106034950318?????????k59q.apps.googleusercontent.com" OpenIDParams.ClientSecret = "oBTQL52J??????-76MpiM" OpenIDParams.RedirectionURL = "http://localhost:9846" MyToken is AuthToken = AuthIdentify(OpenIDParams) IF ErrorOccurred THEN Error(ErrorInfo()) RETURN END MyIdentity is OpenIDIdentity = OpenIDReadIdentity(MyToken) IF MyIdentity.Valid THEN Trace(MyIdentity.Email) Trace(MyIdentity.LastName) Trace(MyIdentity.FirstName) END Syntax
<Result> = OpenIDReadIdentity(<Authentication token>)
<Result>: OpenIDIdentity variable OpenIDIdentity variable containing the information of the authenticated user. <Authentication token>: AuthToken variable Name of the AuthToken variable that corresponds to the token which contains the access information for the next authenticated requests.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|