oauth2-server/examples
2016-02-11 17:30:01 +00:00
..
public First commit of AuthCode rewrite 2016-02-11 17:30:01 +00:00
src Updated examples 2016-01-13 00:28:52 +00:00
composer.json Updated examples 2016-01-13 00:47:41 +00:00
composer.lock Updated composer.lock in example 2016-01-17 14:25:54 +00:00
README.md Updated examples 2016-01-13 00:28:52 +00:00

Example implementations

Installation

  1. Run composer install --no-dev in this directory to install dependencies
  2. Create a private key openssl genrsa -out private.key 1024
  3. Create a public key openssl rsa -in private.key -pubout > public.key
  4. cd into the public directory
  5. Start a PHP server php -S localhost:4444

Testing the client credentials grant example

Send the following cURL request:

curl -X "POST" "http://localhost:4444/client_credentials.php/access_token" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Accept: 1.0" \
	--data-urlencode "client_id=myawesomeapp" \
	--data-urlencode "scope=basic email" \
	--data-urlencode "client_secret=abc123" \
	--data-urlencode "grant_type=client_credentials"

Testing the password grant example

Send the following cURL request:

curl -X "POST" "http://localhost:4444/password.php/access_token" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Accept: 1.0" \
	--data-urlencode "client_id=myawesomeapp" \
	--data-urlencode "scope=basic email" \
	--data-urlencode "username=alex" \
	--data-urlencode "password=whisky" \
	--data-urlencode "client_secret=abc123" \
	--data-urlencode "grant_type=password"

Testing the refresh token grant example

Send the following cURL request. Replace {{REFRESH_TOKEN}} with a refresh token from another grant above:

curl -X "POST" "http://localhost:4444/refresh_token.php/access_token" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Accept: 1.0" \
	--data-urlencode "grant_type=refresh_token" \
	--data-urlencode "client_id=myawesomeapp" \
	--data-urlencode "client_secret=abc123" \
	--data-urlencode "refresh_token={{REFRESH_TOKEN}}"