|
|
|
|
|
GglListContactGroup (Function) In french: GglListeGroupeContact Retrieves the list of groups of contacts associated with the specified Google account. // Connection Cnt is gglConnection ... // Retrieves the groups of contacts arrGroups is array of gglContactGroup arrGroups = GglListContactGroup(Cnt) // Browse the groups Grp is dynamic gglContactGroup FOR EACH Grp OF arrGroups Trace(Grp.Name) END
Syntax
Retrieving the groups of a contact Hide the details
<Result> = GglListContactGroup(<Google connection> , <Contact>)
<Result>: Array of gglContactGroup variables Array of gglContactGroup variables. <Google connection>: gglConnection variable Name of the gglConnection variable to be used. This connection was validated by GglConnect. <Contact>: gglContact variable Name of the gglContact variable whose associated groups are to be found.
Retrieving the groups of the connection Hide the details
<Result> = GglListContactGroup(<Google connection>)
<Result>: Array of gglContactGroup variables Array of gglContactGroup variables. <Google connection>: gglConnection variable Name of the gglConnection variable to be used. This connection was validated by GglConnect. Remarks Possible error cases: - The Internet connection is not valid.
- The authentication was not performed properly.
- The XML response of the server cannot be read.
To find out whether an error occurred, use the ErrorOccurred variable.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|