Hi Joe,

The Groups Settings API is one of the recently released APIs that are based
JSON-based and it can be used with the new google-api-php-client which
doesn't require the Zend framework:

https://developers.google.com/google-apps/groups-settings/

Methods like RetrieveAllGroups do not belong to the Groups Settings API but
instead they are part of the Provisioning API, which is XML-based and uses
the Zend Framework:

https://developers.google.com/google-apps/provisioning/

Claudio


On Fri, Mar 16, 2012 at 12:36 PM, Joe Zobkiw <[email protected]> wrote:

> Can someone help fill in a few gaps for me?
>
> It would seem as though I should be able to access Groups Settings API
> using the google-api-php-client but I see enough recent references to Zend
> that it seems that might be necessary as well. Since there is no Groups
> Settings example in the SDK (although the apiGroupssettingsService.php has
> now been added) it's hard to figure out exactly how to call the api.
>
> For example...this just doesn't work for some reason - causing 500 errors:
>
> $client = new apiClient();
> ... authentication occurs properly etc ...
> $service = new apiGroupssettingsService($client);
> $groups = $service->groups;
> $group = $groups->get('[email protected]');
> print_r($group);
>
> Also, I see no reference to RetrieveAllGroups and other methods mentioned
> elsewhere.
>
> Am I just referencing the $service incorrectly?
>
> If Zend *is* required then I have another problem where loadClass fails
> (500 errors as well)
>
> Very strange...thanks for any assistance!
>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google Apps Domain Information and Management APIs" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/google-apps-mgmt-apis/-/09f19L9vUBgJ.
> To post to this group, send email to
> [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-apps-mgmt-apis?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Apps Domain Information and Management APIs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-apps-mgmt-apis?hl=en.

Reply via email to