PHP code example of codewiser / oauth2-resource-server
1. Go to this page and download the library: Download codewiser/oauth2-resource-server library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
codewiser / oauth2-resource-server example snippets
Route::get('resource', 'ApiController@list')->middleware('scope:read');
class ApiController extends Controller
{
public function list(Request $request)
{
// Get user profile from OAuth server
$owner = ResourceServer::getTokenOwner($request);
// Your code here
}
}
Route::get('resource', 'ApiController@list')->middleware('scope');
class ApiController extends Controller
{
public function list(Request $request)
{
ResourceServer::introspect($request)
->validateScope('read');
// Your code here
}
}
if (!OAuthClient::hasAccessToken()) {
// Will remeber current page to get user back here.
OAuthClient::setReturnUrl($request->fullUrl());
// Set
try {
// Callback will exchange authorization_code to access_token and stores it into session.
OAuthClient::callback($request);
// Then return user back to the page we previously stores.
return redirect(OAuthClient::getReturnUrl('/'));
} catch (\Throwable $e) {
}
if (OAuthClient::hasAccessToken()) {
ResourceServer::getIntrospectedToken(OAuthClient::getAccessToken())
->validateScope('read');
// Your code here
}