Packagecom.distriqt.extension.googleidentity
Classpublic class GoogleAuthentication
InheritanceGoogleAuthentication Inheritance Object



Public Properties
 PropertyDefined By
  accessToken : String
The OAuth2 access token to access Google services
GoogleAuthentication
  idToken : String
An OpenID Connect ID token that identifies the user.
GoogleAuthentication
  refreshToken : String
A one-time server auth code to send to your web server which can be exchanged for access token and sometimes refresh token if options.requestServerAuthCode is enabled.
GoogleAuthentication
Public Methods
 MethodDefined By
  
Constructor
GoogleAuthentication
  
[static]
GoogleAuthentication
Property Detail
accessTokenproperty
public var accessToken:String

The OAuth2 access token to access Google services

idTokenproperty 
public var idToken:String

An OpenID Connect ID token that identifies the user. Send this token to your server to authenticate the user there. For more information on this topic, see https://developers.google.com/identity/sign-in/ios/backend-auth

refreshTokenproperty 
public var refreshToken:String

A one-time server auth code to send to your web server which can be exchanged for access token and sometimes refresh token if options.requestServerAuthCode is enabled. The OAuth2 refresh token to exchange for new access tokens

Constructor Detail
GoogleAuthentication()Constructor
public function GoogleAuthentication()

Constructor

Method Detail
fromObject()method
public static function fromObject(data:Object):GoogleAuthentication

Parameters

data:Object

Returns
GoogleAuthentication