Skip to content

Commit

Permalink
MDL-29960 repository/dropbox - update to use 1.0 API version
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Nov 25, 2011
1 parent 79b0fec commit c745d1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion repository/dropbox/lib.php
Expand Up @@ -66,7 +66,7 @@ public function __construct($repositoryid, $context = SYSCONTEXTID, $options = a
'oauth_consumer_key'=>$this->dropbox_key,
'oauth_consumer_secret'=>$this->dropbox_secret,
'oauth_callback' => $this->callback->out(false),
'api_root' => 'http://www.dropbox.com/0/oauth',
'api_root' => 'https://www.dropbox.com/1/oauth',
);

$this->dropbox = new dropbox($args);
Expand Down
4 changes: 2 additions & 2 deletions repository/dropbox/locallib.php
Expand Up @@ -35,9 +35,9 @@ class dropbox extends oauth_helper {
/** dropbox access type, can be dropbox or sandbox */
private $mode = 'dropbox';
/** dropbox api url*/
private $dropbox_api = 'http://api.dropbox.com/0';
private $dropbox_api = 'https://api.dropbox.com/1';
/** dropbox content api url*/
private $dropbox_content_api = 'http://api-content.dropbox.com/0';
private $dropbox_content_api = 'https://api-content.dropbox.com/1';

function __construct($args) {
parent::__construct($args);
Expand Down

0 comments on commit c745d1e

Please sign in to comment.