Skip to content

Repository files navigation

Ray.OAuthModule

Build Status

OAuth Module for Ray.Di

Installation

Composer install

$ composer require ray/oauth-module

Module install

useRay\Di\AbstractModule;
useRay\OAuthModule\OAuth1Module;
useRay\OAuthModule\OAuth1Service;
class AppModule extends AbstractModule
{
protectedfunctionconfigure()
{
$this->install(newOAuth1Module(OAuth1Service::TWITTER, $_ENV['CONSUMER_KEY'], $_ENV['CONSUMER_SECRET'], '/oauth/callback'));
}
}

Usage

Redirects to the authorization page.

useRay\OAuthModule\Inject\TwitterOAuthInject;
class OAuthController
{
use TwitterOAuthInject;
publicfunctionredirectAction()
{
$this->twitterOAuth->authorize();
}
}

Requests the AccessToken. This is callback process after authorization finished.

useRay\OAuthModule\Inject\TwitterOAuthInject;
class OAuthController
{
use TwitterOAuthInject;
publicfunctioncallbackAction()
{
if ($_GET['denied']) {
// should be handled as errorreturn'ERROR';
}
// requests AccessToken$token = $this->twitterOAuth->requestAccessToken($_GET['oauth_token'], $_GET['oauth_verifier']);
/** @var OAuth\OAuth1\Token\TokenInterface $token */// $accessToken = $token->getAccessToken();// $accessTokenSecret = $token->getAccessTokenSecret();$userId = $token->getExtraParams()['user_id'];
$screenName = $token->getExtraParams()['screen_name'];
// gets authorized user info$user = $this->twitterOAuth->api('get', 'users/show.json', ['user_id' => $userId]);
$user = json_decode($user);
$result = 'user_id : ' . $userId .'<br />';
$result.= 'screen_name : @' . $screenName . '<br />';
$result.= 'name: ' . $user->name;
return$result;
}
}

Demo

OAuth1 (Twitter)

See docs/demo/www/oauth1_twitter.php for detail.

# 1. Create and configure the Twitter App on Developer Website# 2. Set Consumer Key and Secret in docs/demo/www/oauth1_twitter.php# 3. Start the PHP built-in Web-Server$ php -S localhost:8080 -t docs/demo/www
# 4. Access http://localhost:8080/oauth1_twitter.php
<< output >>
user_id: {Your User ID}
screen_name: @{your_screen_name}
name: {Your Name}

OAuth2 (Facebook)

See docs/demo/www/oauth2_facebook.php for detail.

# 1. Create and configure the Facebook App on Developer Website# 2. Set App ID and Secret in docs/demo/www/oauth2_facebook.php# 3. Start the PHP built-in Web-Server$ php -S localhost:8080 -t docs/demo/www
# 4. Access http://localhost:8080/oauth2_facebook.php
<< output >>
id: {Your ID}
name: {Your Name}

About

OAuth module for Ray.Di

Topics

Resources

Stars

4 stars

Watchers

7 watching

Forks

Releases

Packages

Used by

Contributors

Languages