PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins
/
wordpress-social-login
/
hybridauth
/
Hybrid
/
Providers
<?php /*! * HybridAuth * http://hybridauth.sourceforge.net | http://github.com/hybridauth/hybridauth * (c) 2009-2012, HybridAuth authors | http://hybridauth.sourceforge.net/licenses.html */ /** * Hybrid_Providers_TwitchTV provider adapter based on OAuth2 protocol * * http://hybridauth.sourceforge.net/userguide/IDProvider_info_TwitchTV.html */ class Hybrid_Providers_TwitchTV extends Hybrid_Provider_Model_OAuth2 { // default permissions public $scope = "user_read"; /** * IDp wrappers initializer */ function initialize() { parent::initialize(); // Provider apis end-points $this->api->api_base_url = "https://api.twitch.tv/kraken/"; $this->api->authorize_url = "https://api.twitch.tv/kraken/oauth2/authorize"; $this->api->token_url = "https://api.twitch.tv/kraken/oauth2/token"; $this->api->sign_token_name = "oauth_token"; } /** * begin login step */ function loginBegin() { $parameters = array( "scope" => $this->scope ); $optionals = array( "scope" ); foreach ($optionals as $parameter){ if( isset( $this->config[$parameter] ) && ! empty( $this->config[$parameter] ) ){ $parameters[$parameter] = $this->config[$parameter]; } } Hybrid_Auth::redirect( $this->api->authorizeUrl( $parameters ) ); } /** * load the user profile from the IDp api client */ function getUserProfile() { $data = $this->api->api( "user" ); if ( ! isset( $data->name ) ){ throw new Exception( "User profile request failed! {$this->providerId} returned an invalid response.", 6 ); } $this->user->profile->identifier = $data->_id; $this->user->profile->displayName = $data->display_name; $this->user->profile->photoURL = $data->logo; $this->user->profile->profileURL = "http://www.twitch.tv/" . $data->name; $this->user->profile->email = $data->email; if( ! $this->user->profile->displayName ){ $this->user->profile->displayName = $data->name; } 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]