public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Fitbit";
     $this->config['request_token_url'] = 'http://api.fitbit.com/oauth/request_token';
     $this->config['dialog_url'] = 'http://api.fitbit.com/oauth/authorize';
     $this->config['access_token_url'] = 'http://api.fitbit.com/oauth/access_token';
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "LinkedIn";
     $this->config['request_token_url'] = 'https://api.linkedin.com/uas/oauth/requestToken?scope={SCOPE}';
     $this->config['dialog_url'] = 'https://api.linkedin.com/uas/oauth/authenticate';
     $this->config['access_token_url'] = 'https://api.linkedin.com/uas/oauth/accessToken';
     $this->config['url_parameters'] = true;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Flickr";
     $this->config['request_token_url'] = 'http://www.flickr.com/services/oauth/request_token';
     $this->config['dialog_url'] = 'http://www.flickr.com/services/oauth/authorize?perms={SCOPE}';
     $this->config['access_token_url'] = 'http://www.flickr.com/services/oauth/access_token';
     $this->config['authorization_header'] = false;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Tumblr";
     $this->config['request_token_url'] = 'http://www.tumblr.com/oauth/request_token';
     $this->config['dialog_url'] = 'http://www.tumblr.com/oauth/authorize';
     $this->config['access_token_url'] = 'http://www.tumblr.com/oauth/access_token';
     $this->config['debug'] = true;
     $this->config['debug_http'] = true;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Evernote";
     $this->config['request_token_url'] = 'https://sandbox.evernote.com/oauth';
     $this->config['dialog_url'] = 'https://sandbox.evernote.com/OAuth.action';
     $this->config['access_token_url'] = 'https://sandbox.evernote.com/oauth';
     $this->config['authorization_header'] = false;
     $this->config['url_parameters'] = true;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Bitbucket";
     $this->config['request_token_url'] = "https://bitbucket.org/!api/1.0/oauth/request_token";
     $this->config['dialog_url'] = 'https://bitbucket.org/!api/1.0/oauth/authenticate';
     $this->config['access_token_url'] = "https://bitbucket.org/!api/1.0/oauth/access_token";
     $this->config['debug'] = false;
     $this->config['debug_http'] = true;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Yahoo";
     $this->config['request_token_url'] = 'https://api.login.yahoo.com/oauth/v2/get_request_token';
     $this->config['dialog_url'] = 'https://api.login.yahoo.com/oauth/v2/request_auth';
     $this->config['access_token_url'] = 'https://api.login.yahoo.com/oauth/v2/get_token';
     $this->config['authorization_header'] = false;
     $this->config['debug'] = false;
     $this->config['debug_http'] = true;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Scoop.it";
     $this->config['request_token_url'] = 'https://www.scoop.it/oauth/request';
     $this->config['dialog_url'] = 'https://www.scoop.it/oauth/authorize';
     $this->config['access_token_url'] = 'https://www.scoop.it/oauth/access';
     $this->config['authorization_header'] = false;
     $this->config['debug'] = false;
     $this->config['debug_http'] = true;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "RightSignature";
     $this->config['request_token_url'] = 'https://rightsignature.com/oauth/request_token';
     $this->config['dialog_url'] = 'https://rightsignature.com/oauth/authorize';
     $this->config['access_token_url'] = 'https://rightsignature.com/oauth/access_token';
     $this->config['authorization_header'] = false;
     $this->config['debug'] = false;
     $this->config['debug_http'] = true;
 }
Exemplo n.º 10
0
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "XING";
     $this->config['request_token_url'] = 'https://api.xing.com/v1/request_token';
     $this->config['dialog_url'] = 'https://api.xing.com/v1/authorize';
     $this->config['access_token_url'] = 'https://api.xing.com/v1/access_token';
     $this->config['authorization_header'] = false;
     $this->config['debug'] = false;
     $this->config['debug_http'] = true;
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Eventful";
     $this->config['request_token_url'] = 'http://eventful.com/oauth/request_token';
     $this->config['dialog_url'] = 'http://eventful.com/oauth/authorize';
     $this->config['access_token_url'] = 'http://eventful.com/oauth/access_token';
     $this->config['authorization_header'] = false;
     $this->config['url_parameters'] = true;
     $this->config['token_request_method'] = 'POST';
 }
 public function __construct()
 {
     parent::__construct();
     $this->config['server'] = "Twitter";
     $this->config['request_token_url'] = 'https://api.twitter.com/oauth/request_token';
     $this->config['dialog_url'] = 'https://api.twitter.com/oauth/authenticate';
     $this->config['access_token_url'] = 'https://api.twitter.com/oauth/access_token';
     $this->config['redirect_uri'] = "";
     $this->config['debug'] = true;
     $this->config['url_parameters'] = true;
     $this->config['debug_http'] = true;
 }