mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-01 12:05:37 +02:00
35 lines
454 B
PHP
35 lines
454 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package auth
|
|
* @copyright (c) 2013 phpBB Group
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* @ignore
|
|
*/
|
|
if (!defined('IN_PHPBB'))
|
|
{
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Amazon OAuth service
|
|
*
|
|
* @package auth
|
|
*/
|
|
class phpbb_auth_provider_oauth_service_amazon extends phpbb_auth_provider_oauth_service_base
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_auth_scope()
|
|
{
|
|
return array(
|
|
'profile',
|
|
);
|
|
}
|
|
}
|