PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
wordpress-social-login
/
hybridauth
/
Hybrid
/
Providers
<?php /*! * HybridAuth * http://hybridauth.sourceforge.net | https://github.com/hybridauth/hybridauth * (c) 2009-2014 HybridAuth authors | hybridauth.sourceforge.net/licenses.html */ /** * Hybrid_Providers_Disqus */ class Hybrid_Providers_Disqus extends Hybrid_Provider_Model_OAuth2 { // default permissions // (read,email) => public info and email public $scope = "read,email"; /** * IDp wrappers initializer */ function initialize() { parent::initialize(); // Provider api end-points $this->api->api_base_url = "https://disqus.com/api/3.0/"; $this->api->authorize_url = "https://disqus.com/api/oauth/2.0/authorize"; $this->api->token_url = "https://disqus.com/api/oauth/2.0/access_token/"; } /** * load the user profile from the IDp api client */ function getUserProfile() { $data = $this->api->get( "users/details" , array('api_key' => $this->api->client_id, 'api_secret' => $this->api->client_secret)); if ( ! isset( $data->code ) ){ throw new Exception( "User profile request failed! {$this->providerId} returned an invalid response.", 6 ); } else if ( $data->code != 0 ){ throw new Exception( "User profile request failed! {$this->providerId} returned error code".$data->code.".", 6 ); } $this->user->profile->identifier = @ $data->response->id; $this->user->profile->displayName = @ $data->response->name; $this->user->profile->description = @ $data->response->bio; $this->user->profile->photoURL = @ $data->response->avatar->permalink; $this->user->profile->profileURL = @ $data->response->profileUrl; $this->user->profile->email = @ $data->response->email; $this->user->profile->region = @ $data->response->location; $this->user->profile->description = @ $data->response->about; if( ! $this->user->profile->displayName ){ $this->user->profile->displayName = @ $data->response->username; } return $this->user->profile; } }
[+]
..
[-] GitHub.php
[edit]
[-] OpenID.php
[edit]
[-] Skyrock.php
[edit]
[-] PixelPin.php
[edit]
[-] Mailru.php
[edit]
[-] TwitchTV.php
[edit]
[-] Mixi.php
[edit]
[-] Disqus.php
[edit]
[-] Facebook.php
[edit]
[-] Steam.php
[edit]
[-] Reddit.php
[edit]
[-] Instagram.php
[edit]
[-] AOL.php
[edit]
[-] Dribbble.php
[edit]
[-] Latch.php
[edit]
[-] Goodreads.php
[edit]
[-] LinkedIn.php
[edit]
[-] Stackoverflow.php
[edit]
[-] Vkontakte.php
[edit]
[-] Live.php
[edit]
[-] LastFM.php
[edit]
[-] Tumblr.php
[edit]
[-] Yahoo.php
[edit]
[-] Yandex.php
[edit]
[-] px500.php
[edit]
[-] Google.php
[edit]
[-] Odnoklassniki.php
[edit]
[-] Foursquare.php
[edit]
[-] WordPress.php
[edit]
[-] Twitter.php
[edit]