Zend_Oauth_Config
string
$_accessTokenUrl
= null (line 102)
The URL to which requests for an Access Token should be directed.
When absent, assumed siteUrl+'/access_token'
string
$_authorizeUrl
= null (line 110)
The URL to which users should be redirected to authorize a Request Token.
When absent, assumed siteUrl+'/authorize'
string
$_callbackUrl
= null (line 79)
This optional value is used to define where the user is redirected to after authorizing a Request Token from an OAuth Providers website.
It's optional since a Provider may ask for this to be defined in advance when registering a new application for a Consumer Key.
string
$_consumerKey
= null (line 117)
An OAuth application's Consumer Key.
string
$_consumerSecret
= null (line 124)
Every Consumer Key has a Consumer Secret unless you're in RSA-land.
string
$_requestMethod
= Zend_Oauth::POST (line 62)
Preferred request Method - one of GET or POST - which Zend_Oauth will enforce as standard throughout the library. Generally a default of POST works fine unless a Provider specifically requires otherwise.
string
$_requestScheme
= Zend_Oauth::REQUEST_SCHEME_HEADER (line 53)
Three request schemes are defined by OAuth, of which passing all OAuth parameters by Header is preferred. The other two are POST Body and Query String.
string
$_requestTokenUrl
= null (line 94)
The URL to which requests for a Request Token should be directed.
When absent, assumed siteUrl+'/request_token'
Zend_Crypt_Rsa_Key_Private
$_rsaPrivateKey
= null (line 132)
If relevant, a PEM encoded RSA private key encapsulated as a Zend_Crypt_Rsa Key
Zend_Crypt_Rsa_Key_Public
$_rsaPublicKey
= null (line 140)
If relevant, a PEM encoded RSA public key encapsulated as a Zend_Crypt_Rsa Key
string
$_signatureMethod
= 'HMAC-SHA1' (line 44)
Signature method used when signing all parameters for an HTTP request
string
$_siteUrl
= null (line 86)
The URL root to append default OAuth endpoint paths.
Zend_Oauth_Token
$_token
= null (line 148)
Generally this will nearly always be an Access Token represented as a Zend_Oauth_Token_Access object.
string
$_version
= '1.0' (line 69)
OAuth Version; This defaults to 1.0 - Must not be changed!
Constructor __construct (line 157)
Constructor; create a new object with an optional array|Zend_Config instance containing initialising options.
getAccessTokenUrl (line 494)
Get access token URL
If no access token URL has been set, but a site URL has, returns the site URL with the string "/access_token" appended.
getAuthorizeUrl (line 551)
Get authorization URL
If no authorization URL has been set, but a site URL has, returns the site URL with the string "/authorize" appended.
getCallbackUrl (line 398)
Get callback URL
getConsumerKey (line 243)
Get consumer key
getConsumerSecret (line 268)
Get consumer secret
Returns RSA private key if set; otherwise, returns any previously set consumer secret.
getRequestMethod (line 588)
Get request method
getRequestScheme (line 347)
Get request scheme
getRequestTokenUrl (line 459)
Get request token URL
If no request token URL has been set, but a site URL has, returns the site URL with the string "/request_token" appended.
getSignatureMethod (line 304)
Get signature method
getSiteUrl (line 427)
Get site URL
getUserAuthorizationUrl (line 538)
Get user authorization URL
getVersion (line 369)
Get version
setAccessTokenUrl (line 474)
Set access token URL
setAuthorizeUrl (line 521)
Set authorization URL
setCallbackUrl (line 381)
Set callback URL
setConsumerKey (line 232)
Set consumer key
setConsumerSecret (line 254)
Set consumer secret
setOptions (line 174)
Parse option array or Zend_Config instance and setup options using their relevant mutators.
setRequestMethod (line 566)
Set request method
setRequestScheme (line 316)
Set request scheme
setRequestTokenUrl (line 439)
Set request token URL
setRsaPrivateKey (line 621)
Set RSA private key
setRsaPublicKey (line 599)
Set RSA public key
setSignatureMethod (line 283)
Set signature method
setUserAuthorizationUrl (line 509)
Set user authorization URL
setVersion (line 358)
Set version
Documentation generated on Mon, 21 Jun 2010 15:13:22 -0400 by phpDocumentor 1.4.3