Файл: forsoc.ru/vendor/lusitanian/oauth/src/OAuth/OAuth1/Service/ServiceInterface.php
Строк: 79
<?php
namespace OAuthOAuth1Service;
use OAuthCommonConsumerCredentialsInterface;
use OAuthCommonStorageTokenStorageInterface;
use OAuthCommonTokenTokenInterface;
use OAuthCommonHttpClientClientInterface;
use OAuthCommonHttpUriUriInterface;
use OAuthCommonHttpExceptionTokenResponseException;
use OAuthCommonServiceServiceInterface as BaseServiceInterface;
use OAuthOAuth1SignatureSignatureInterface;
/**
* Defines the common methods across OAuth 1 services.
*/
interface ServiceInterface extends BaseServiceInterface
{
/**
* Retrieves and stores/returns the OAuth1 request token obtained from the service.
*
* @return TokenInterface $token
*
* @throws TokenResponseException
*/
public function requestRequestToken();
/**
* Retrieves and stores/returns the OAuth1 access token after a successful authorization.
*
* @param string $token The request token from the callback.
* @param string $verifier
* @param string $tokenSecret
*
* @return TokenInterface $token
*
* @throws TokenResponseException
*/
public function requestAccessToken($token, $verifier, $tokenSecret);
/**
* @return UriInterface
*/
public function getRequestTokenEndpoint();
}