We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Please update the method in Server.php file with the following:
public function verifyResourceRequest(\OAuth2\RequestInterface $request = null, \OAuth2\ResponseInterface $response = null, $scope = null) { if($request === null) { $request = $this->module->getRequest(); } return parent::verifyResourceRequest($request, $response, $scope); }
Currently it is:
public function verifyResourceRequest(\OAuth2\RequestInterface $request = null, \OAuth2\ResponseInterface $response = null, $scope = null) { if($request === null) { $request = $this->module->getRequest(); } parent::verifyResourceRequest($request, $response, $scope); }
so irrespective of value it always returns null
The text was updated successfully, but these errors were encountered:
httpd 2.4.x , .htaccess add CGIPassAuth on。or RewriteRule .* - [env=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
Sorry, something went wrong.
No branches or pull requests
Hi,
Please update the method in Server.php file with the following:
Currently it is:
so irrespective of value it always returns null
The text was updated successfully, but these errors were encountered: