Skip to content

Commit

Permalink
Added OAuth2 example to config/oauth
Browse files Browse the repository at this point in the history
  • Loading branch information
shadowhand committed Apr 13, 2011
1 parent bb7b905 commit 48d3060
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions config/oauth.php
Expand Up @@ -8,8 +8,17 @@
* You will be given a "consumer key" and "consumer secret", which must
* be provided when making OAuth requests.
*/
'twitter' => array(
'key' => 'your consumer key',
'secret' => 'your consumer secret'
),
// 'twitter' => array(
// 'key' => 'your consumer key',
// 'secret' => 'your consumer secret'
// ),
/**
* Github applications can be registered at https://github.com/account/applications/new.
* You will be given a "client id" and "client secret", which must
* be provided when making OAuth2 requests.
*/
// 'github' => array(
// 'id' => 'your client id',
// 'secret' => 'your client secret'
// ),
);

0 comments on commit 48d3060

Please sign in to comment.