gigadesign/module-google-client

Wrapper to easily connect to Google Client and use Google API services

1.0.0.1-stable 2019-12-30 18:55 UTC

This package is auto-updated.

Last update: 2024-09-29 05:42:34 UTC


README

This module is a wrapper module to be able to easily connect to all Google API services.

To add a new scope to the connection, add the following to the di.xml of your module:

<type name="Gigadesign\GoogleClient\Model\GoogleClientManager">
	<arguments>
		<argument name="scopes" xsi:type="array">
			<item name="calendar_read_only" xsi:type="string">\Google_Service_Calendar::CALENDAR_READONLY</item>
			<item name="calendar_events" xsi:type="string">\Google_Service_Calendar::CALENDAR_EVENTS</item>
		</argument>
	</arguments>
</type>

And make sure to add this module in the sequence of your own module.