Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
ServiceInterface.php
01 <?php
02
03 namespace OAuth\OAuth1\Service;
04
05 use OAuth\Common\Http\Uri\UriInterface;
06 use OAuth\Common\Service\ServiceInterface as BaseServiceInterface;
07 use OAuth\Common\Token\TokenInterface;
08
09 /**
10 * Defines the common methods across OAuth 1 services.
11 */
12 interface ServiceInterface extends BaseServiceInterface
13 {
14 /**
15 * Retrieves and stores/returns the OAuth1 request token obtained from the service.
16 *
17 * @return TokenInterface $token
18 */
19 public function requestRequestToken();
20
21 /**
22 * Retrieves and stores/returns the OAuth1 access token after a successful authorization.
23 *
24 * @param string $token the request token from the callback
25 * @param string $verifier
26 * @param string $tokenSecret
27 *
28 * @return TokenInterface $token
29 */
30 public function requestAccessToken($token, $verifier, $tokenSecret);
31
32 /**
33 * @return UriInterface
34 */
35 public function getRequestTokenEndpoint();
36 }
37