Android Programming Press on the image to return to the main documentation page.

iGoogleIdentity

List of types:

IdentityClient
IdentityUser

IdentityClient

iGoogleIdentity.h
iGoogleIdentity

Created by b4j on 01/05/2016.
Copyright © 2016 Anywhere Software. All rights reserved.

Events:

Signin (Success As Boolean, User As IdentityUser)

Members:


  Initialize (EventName As String, ApiKey As String, ClientId As String)

  OpenUrl (Url As String, Data As Object) As Boolean

  SigninWithGoogle

  Signout

Members description:

Initialize (EventName As String, ApiKey As String, ClientId As String)
Initializes the object.
EventName - Sets the subs that will handle the events.
ApiKey - Api key (Type = iOS).
ClientId - OAuth 2.0 client ID (Type = iOS)
OpenUrl (Url As String, Data As Object) As Boolean
Should be called from Application_OpenUrl. Returns true if the call was handled.
SigninWithGoogle
Signs in with Google account.
Signout
Deletes the cached account.

IdentityUser


Events:

None

Members:


  DisplayName As String [read only]

  Email As String [read only]

  IsInitialized As Boolean

  PhotoUrl As String [read only]

  Tag As Object

Members description:

DisplayName As String [read only]
Email As String [read only]
IsInitialized As Boolean
Tests whether this object was initialized.
PhotoUrl As String [read only]
Tag As Object
Gets or sets the Tag object. This is a placeholder for any object you like to tie to this object.
Top