[ Index ] |
PHP Cross Reference of phpBB-3.1.12-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 3 namespace OAuth\OAuth1\Service; 4 5 use OAuth\Common\Consumer\CredentialsInterface; 6 use OAuth\Common\Storage\TokenStorageInterface; 7 use OAuth\Common\Token\TokenInterface; 8 use OAuth\Common\Http\Client\ClientInterface; 9 use OAuth\Common\Http\Uri\UriInterface; 10 use OAuth\Common\Http\Exception\TokenResponseException; 11 use OAuth\Common\Service\ServiceInterface as BaseServiceInterface; 12 use OAuth\OAuth1\Signature\SignatureInterface; 13 14 /** 15 * Defines the common methods across OAuth 1 services. 16 */ 17 interface ServiceInterface extends BaseServiceInterface 18 { 19 /** 20 * Retrieves and stores/returns the OAuth1 request token obtained from the service. 21 * 22 * @return TokenInterface $token 23 * 24 * @throws TokenResponseException 25 */ 26 public function requestRequestToken(); 27 28 /** 29 * Retrieves and stores/returns the OAuth1 access token after a successful authorization. 30 * 31 * @param string $token The request token from the callback. 32 * @param string $verifier 33 * @param string $tokenSecret 34 * 35 * @return TokenInterface $token 36 * 37 * @throws TokenResponseException 38 */ 39 public function requestAccessToken($token, $verifier, $tokenSecret); 40 41 /** 42 * @return UriInterface 43 */ 44 public function getRequestTokenEndpoint(); 45 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Jan 11 00:25:41 2018 | Cross-referenced by PHPXref 0.7.1 |