mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
9ff1817c1c
* Google OAuth - Authentication with a backend server
10 lines
169 B
PHP
10 lines
169 B
PHP
<?php namespace App\Ninja\OAuth\Providers;
|
|
|
|
interface ProviderInterface
|
|
{
|
|
public function getTokenResponse($token);
|
|
|
|
public function harvestEmail($response);
|
|
|
|
}
|