Skip to content

Commit

Permalink
Added OAuth RFC comments to OAuth_Request_Token, OAuth_Request_Author…
Browse files Browse the repository at this point in the history
…ize, OAuth_Request_Resource
  • Loading branch information
Woody Gilk committed Jun 27, 2010
1 parent 757d744 commit 381ca1c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions classes/oauth/request/authorize.php
Expand Up @@ -12,6 +12,7 @@ class OAuth_Request_Authorize extends OAuth_Request{

protected $name = 'request';

// http://oauth.net/core/1.0/#rfc.section.6.2.1
protected $required = array(
'oauth_token' => TRUE,
);
Expand Down
1 change: 1 addition & 0 deletions classes/oauth/request/resource.php
Expand Up @@ -12,6 +12,7 @@ class OAuth_Request_Resource extends OAuth_Request{

protected $name = 'resource';

// http://oauth.net/core/1.0/#rfc.section.7
protected $required = array(
'oauth_consumer_key' => TRUE,
'oauth_token' => TRUE,
Expand Down
1 change: 1 addition & 0 deletions classes/oauth/request/token.php
Expand Up @@ -12,6 +12,7 @@ class OAuth_Request_Token extends OAuth_Request {

protected $name = 'request';

// http://oauth.net/core/1.0/#rfc.section.6.3.1
protected $required = array(
'oauth_callback' => TRUE,
'oauth_consumer_key' => TRUE,
Expand Down

0 comments on commit 381ca1c

Please sign in to comment.