1 | <?php |
||
9 | class Salesforce extends AbstractService |
||
10 | { |
||
11 | /** |
||
12 | * Scopes. |
||
13 | * |
||
14 | * @var string |
||
15 | */ |
||
16 | const SCOPE_API = 'api'; |
||
17 | const SCOPE_REFRESH_TOKEN = 'refresh_token'; |
||
18 | |||
19 | /** |
||
20 | * {@inheritdoc} |
||
21 | */ |
||
22 | public function getAuthorizationEndpoint() |
||
26 | |||
27 | /** |
||
28 | * {@inheritdoc} |
||
29 | */ |
||
30 | public function getAccessTokenEndpoint() |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | protected function parseRequestTokenResponse($responseBody) |
||
50 | |||
51 | /** |
||
52 | * {@inheritdoc} |
||
53 | */ |
||
54 | protected function parseAccessTokenResponse($responseBody) |
||
78 | |||
79 | /** |
||
80 | * {@inheritdoc} |
||
81 | */ |
||
82 | protected function getExtraOAuthHeaders() |
||
86 | } |
||
87 |