This manual is deprecated. Please visit https://groupoffice.readthedocs.io for the latest documentation.

Difference between revisions of "Google Drive"

From Group-Office Groupware and CRM Documentation
Jump to: navigation, search
(Installation instructions)
(Installation instructions)
Line 7: Line 7:
 
=Installation instructions=
 
=Installation instructions=
  
Visit https://code.google.com/apis/console and generate an API key and OAuth 2.0 credentials for your Group-Office installation. You'll need to enter a redirect URL. For this URL you must enter:
+
= Create an API key
  
http://your.domain/groupoffice/index.php?r=googledrive/file/connect
 
  
Make sure that:
+
1. Visit https://code.google.com/apis/console
  
#The '''Drive API''' is enabled at the services page.
+
2. Login with your google account (if you haven't already)
#your.domain matches the domain you login with in Group-Office and that there's no or a matching $config['full_url'] configured in Group-Office. Otherwise you'll get a login prompt and editing will fail.
+
 
 +
3. Press the "Create Project"  button.
 +
 
 +
4. Find "Drive API" in the list of google API
 +
 
 +
5. Toggle the On/Off switch to "On" and accept the terms of services
 +
 
 +
6. Click "Credentials" in the menu on the left
 +
 
 +
7. Click "Create new client ID" Select "Web application" Enter the Email and Project name and press "Save"
 +
8. Enter [http://your.domain] for "Autorized javascript origins" and [http://your.domain/groupoffice/index.php?r=googledrive/file/connect] for "Redirect URIs"
 +
 
 +
9. Click "Create new key", select "Browser key" enter [your.domain.com/*] in the text field and press "Create"
 +
 
 +
10. Add the ClientID and Api key value to your GroupOffice its config.php file
  
 
Once your key is setup enter the following values in config.php:
 
Once your key is setup enter the following values in config.php:

Revision as of 17:10, 2 February 2015

The Google Drive module (Available since 4.1.25) allows you to edit your Group-Office documents with the Google editor in the browser. The following video demonstrates it.

Installation instructions

= Create an API key


1. Visit https://code.google.com/apis/console

2. Login with your google account (if you haven't already)

3. Press the "Create Project" button.

4. Find "Drive API" in the list of google API

5. Toggle the On/Off switch to "On" and accept the terms of services

6. Click "Credentials" in the menu on the left

7. Click "Create new client ID" Select "Web application" Enter the Email and Project name and press "Save" 8. Enter [1] for "Autorized javascript origins" and [2] for "Redirect URIs"

9. Click "Create new key", select "Browser key" enter [your.domain.com/*] in the text field and press "Create"

10. Add the ClientID and Api key value to your GroupOffice its config.php file

Once your key is setup enter the following values in config.php:

$config['googledrive_oauth2_client_id']='';
$config['googledrive_oauth2_client_secret']='';
$config['googledrive_simple_api_key']='';

Now install the module in Group-Office at Start menu -> Modules -> Install and grant permissions.

Now editing should work by connecting your personal Google account!