Make Google Drive storage id unique, before it was anonymousanonymous

remotes/origin/stable5
Michael Gapczynski 12 years ago
parent e8b195bf10
commit 464dafd7d2
  1. 2
      apps/files_external/lib/google.php

@ -41,7 +41,7 @@ class Google extends \OC\Files\Storage\Common {
) {
$consumer_key = isset($params['consumer_key']) ? $params['consumer_key'] : 'anonymous';
$consumer_secret = isset($params['consumer_secret']) ? $params['consumer_secret'] : 'anonymous';
$this->id = 'google::' . $consumer_key . $consumer_secret;
$this->id = 'google::' . $params['token'];
$this->consumer = new \OAuthConsumer($consumer_key, $consumer_secret);
$this->oauth_token = new \OAuthToken($params['token'], $params['token_secret']);
$this->sig_method = new \OAuthSignatureMethod_HMAC_SHA1();

Loading…
Cancel
Save