File tree Expand file tree Collapse file tree 6 files changed +15
-1
lines changed
tests/Unit/OAuth2/Service Expand file tree Collapse file tree 6 files changed +15
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 4343 'key ' => '' ,
4444 'secret ' => '' ,
4545 ),
46+ 'delicious ' => array (
47+ 'key ' => '' ,
48+ 'secret ' => '' ,
49+ ),
4650 'deviantart ' => array (
4751 'key ' => '' ,
4852 'secret ' => '' ,
146150 'key ' => '' ,
147151 'secret ' => '' ,
148152 ),
153+ 'salesforce ' => array (
154+ 'key ' => '' ,
155+ 'secret ' => ''
156+ ),
149157 'scoopit ' => array (
150158 'key ' => '' ,
151159 'secret ' => ''
Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments