1 | <?php |
||
9 | class Ustream extends AbstractService |
||
10 | { |
||
11 | /** |
||
12 | * Scopes |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | const SCOPE_OFFLINE = 'offline'; |
||
17 | const SCOPE_BROADCASTER = 'broadcaster'; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | protected function init() |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function getAuthorizationEndpoint() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function getAccessTokenEndpoint() |
||
46 | |||
47 | /** |
||
48 | * {@inheritdoc} |
||
49 | */ |
||
50 | protected function getAuthorizationMethod() |
||
54 | |||
55 | /** |
||
56 | * {@inheritdoc} |
||
57 | */ |
||
58 | protected function parseAccessTokenResponse($responseBody) |
||
84 | |||
85 | /** |
||
86 | * {@inheritdoc} |
||
87 | */ |
||
88 | protected function getExtraOAuthHeaders() |
||
92 | } |
||
93 |