Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Public Member Functions
Zend_Oauth_Token_Request Class Reference
Inheritance diagram for Zend_Oauth_Token_Request:
Zend_Oauth_Token

Public Member Functions

 __construct (Zend_Http_Response $response=null, Zend_Oauth_Http_Utility $utility=null)
 
- Public Member Functions inherited from Zend_Oauth_Token
 __construct (Zend_Http_Response $response=null, Zend_Oauth_Http_Utility $utility=null)
 
 isValid ()
 
 getResponse ()
 
 setTokenSecret ($secret)
 
 getTokenSecret ()
 
 setParam ($key, $value)
 
 setParams (array $params)
 
 getParam ($key)
 
 setToken ($token)
 
 getToken ()
 
 __get ($key)
 
 __set ($key, $value)
 
 toString ()
 
 __toString ()
 
 __sleep ()
 
 __wakeup ()
 

Additional Inherited Members

- Data Fields inherited from Zend_Oauth_Token
const TOKEN_PARAM_KEY = 'oauth_token'
 
const TOKEN_SECRET_PARAM_KEY = 'oauth_token_secret'
 
const TOKEN_PARAM_CALLBACK_CONFIRMED = 'oauth_callback_confirmed'
 
- Protected Member Functions inherited from Zend_Oauth_Token
 _parseParameters (Zend_Http_Response $response)
 
- Protected Attributes inherited from Zend_Oauth_Token
 $_params = array()
 
 $_response = null
 
 $_httpUtility = null
 

Detailed Description

Definition at line 31 of file Request.php.

Constructor & Destructor Documentation

◆ __construct()

__construct ( Zend_Http_Response  $response = null,
Zend_Oauth_Http_Utility  $utility = null 
)

Constructor

Parameters
null | Zend_Http_Response$response
null | Zend_Oauth_Http_Utility$utility

Definition at line 39 of file Request.php.

42  {
43  parent::__construct($response, $utility);
44 
45  // detect if server supports OAuth 1.0a
46  if (isset($this->_params[Zend_Oauth_Token::TOKEN_PARAM_CALLBACK_CONFIRMED])) {
48  }
49  }
$response
Definition: 404.php:11
const TOKEN_PARAM_CALLBACK_CONFIRMED
Definition: Token.php:38
static $supportsRevisionA
Definition: Client.php:46

The documentation for this class was generated from the following file: