OAuth2ClientControllerInterface.php in OAuth2 Client 8
Namespace
Drupal\oauth2_client\ControllerFile
src/Controller/OAuth2ClientControllerInterface.phpView source
<?php
namespace Drupal\oauth2_client\Controller;
/**
* Interface OAuth2ClientControllerInterface.
*
* @package Drupal\oauth2_client\Controller
*/
interface OAuth2ClientControllerInterface {
/**
* Callback for path oauth2/authorized.
*
* An authorized request in server-side flow
* will be redirected here (having variables
* 'code' and 'state').
*/
public function redirectUrlPage();
}
Interfaces
Name | Description |
---|---|
OAuth2ClientControllerInterface | Interface OAuth2ClientControllerInterface. |