Skip to content

Commit 92f3ee6

Browse files
committed
Merge pull request #434 from PedroAmorim/doc
Doc
2 parents a32d3da + 0640da5 commit 92f3ee6

File tree

6 files changed

+15
-1
lines changed

6 files changed

+15
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ Included service implementations
6363
- BitLy
6464
- Bitrix24
6565
- Box
66+
- Buffer
6667
- Dailymotion
68+
- Delicious
6769
- DeviantArt
6870
- Dropbox
6971
- Eve Online
@@ -87,12 +89,14 @@ Included service implementations
8789
- Pocket
8890
- Reddit
8991
- RunKeeper
92+
- Salesforce
9093
- SoundCloud
9194
- Spotify
9295
- Strava
9396
- Ustream
9497
- Vimeo
9598
- Vkontakte
99+
- Yahoo
96100
- Yammer
97101
- more to come!
98102

examples/init.example.php

+8
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
'key' => '',
4444
'secret' => '',
4545
),
46+
'delicious' => array(
47+
'key' => '',
48+
'secret' => '',
49+
),
4650
'deviantart' => array(
4751
'key' => '',
4852
'secret' => '',
@@ -146,6 +150,10 @@
146150
'key' => '',
147151
'secret' => '',
148152
),
153+
'salesforce' => array(
154+
'key' => '',
155+
'secret' => ''
156+
),
149157
'scoopit' => array(
150158
'key' => '',
151159
'secret' => ''

examples/nest.php

100755100644
File mode changed.

src/OAuth/OAuth2/Service/Nest.php

100755100644
File mode changed.

src/OAuth/OAuth2/Service/Yahoo.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ protected function parseAccessTokenResponse($responseBody)
6868
*/
6969
protected function getExtraOAuthHeaders()
7070
{
71-
$encodedCredentials = base64_encode($this->credentials->getConsumerId() . ':' . $this->credentials->getConsumerSecret());
71+
$encodedCredentials = base64_encode(
72+
$this->credentials->getConsumerId() . ':' . $this->credentials->getConsumerSecret()
73+
);
7274
return array('Authorization' => 'Basic ' . $encodedCredentials);
7375
}
7476
}

tests/Unit/OAuth2/Service/NestTest.php

100755100644
File mode changed.

0 commit comments

Comments
 (0)