1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-12 19:54:12 +02:00

[feature/oauth] Get service credentials on each OAuth service

PHPBB3-11673
This commit is contained in:
Joseph Warner
2013-07-14 16:00:41 -04:00
parent 55cdc874e6
commit 6a2871692c
19 changed files with 201 additions and 12 deletions

View File

@@ -28,4 +28,17 @@ interface phpbb_auth_provider_oauth_service_interface
* @return array An array of the required scopes
*/
public function get_auth_scope();
/**
* Returns an array containing the service credentials belonging to requested
* service.
*
* @return array An array containing the 'key' and the 'secret' of the
* service in the form:
* array(
* 'key' => string
* 'secret' => string
* )
*/
public function get_service_credentials();
}