diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-16 20:35:07 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2013-05-16 20:35:07 -0400 |
commit | ee398ccbc26c3702537c0c83bd898f326562dd14 (patch) | |
tree | 9b91b5b8e6156d06ed1258d4cdb9413f91a79e88 /apps | |
parent | d8c660c6d524ad1226abeb00e8d4de4039eae1e1 (diff) | |
download | nextcloud-server-ee398ccbc26c3702537c0c83bd898f326562dd14.tar.gz nextcloud-server-ee398ccbc26c3702537c0c83bd898f326562dd14.zip |
Setting Redirect URI is not required here
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/google.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/files_external/lib/google.php b/apps/files_external/lib/google.php index 259a7761428..3f7a9877f78 100644 --- a/apps/files_external/lib/google.php +++ b/apps/files_external/lib/google.php @@ -47,7 +47,6 @@ class Google extends \OC\Files\Storage\Common { $client = new \Google_Client(); $client->setClientId($params['client_id']); $client->setClientSecret($params['client_secret']); - $client->setRedirectUri('http://localhost/workspace/core'); $client->setScopes(array('https://www.googleapis.com/auth/drive')); $client->setUseObjects(true); $client->setAccessToken($params['token']); |