|
|
|
|
|
<gglConnection variable>.ListContactByRequest (Function) In french: <Variable gglConnexion>.ListeContactParRequête Retrieves a list of contacts from custom parameters.
Cnt is gglConnection
...
IF Cnt.Connect() = False THEN
Error(ErrorInfo())
END
...
arrContacts is array of 0 gglContact
arrContacts = Cnt.ListContactByRequest("updated-min=2008-08-08")
arrContacts = Cnt.ListContactByRequest(...
"updated-min=1789-07-14&start-index=1&max-results=10")
Identifier is string
Identifier = "http://www.google.com/feeds/contacts/groups/jo%40gmail.com/base/1234a"
arrContacts = Cnt.ListContactByRequest("sortorder=descending&group=" + Identifier)
Syntax
<Result> = <Google connection>.ListContactByRequest(<Parameters>)
<Result>: Array of gglContact variables Array of gglContact variables. <Google connection>: gglConnection variable Name of the gglConnection variable to be used. This connection was validated by <gglConnection variable>.Connect. <Parameters>: Character string Parameters that must be passed to the HTTP request. The parameters are separated by the & character. For more details, see the documentation about the Google Contacts service. 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|