Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
zendframework1
library
Zend
Oauth
Token
Request.php
Go to the documentation of this file.
1
<?php
23
#require_once 'Zend/Oauth/Token.php';
24
31
class
Zend_Oauth_Token_Request
extends
Zend_Oauth_Token
32
{
39
public
function
__construct
(
40
Zend_Http_Response
$response
=
null
,
41
Zend_Oauth_Http_Utility
$utility =
null
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
])) {
47
Zend_Oauth_Client::$supportsRevisionA
=
true
;
48
}
49
}
50
}
$response
$response
Definition:
404.php:11
Zend_Oauth_Token_Request\__construct
__construct(Zend_Http_Response $response=null, Zend_Oauth_Http_Utility $utility=null)
Definition:
Request.php:39
Zend_Oauth_Token\TOKEN_PARAM_CALLBACK_CONFIRMED
const TOKEN_PARAM_CALLBACK_CONFIRMED
Definition:
Token.php:38
Zend_Oauth_Token_Request
Definition:
Request.php:31
Zend_Oauth_Client\$supportsRevisionA
static $supportsRevisionA
Definition:
Client.php:46
Zend_Http_Response
Definition:
Response.php:39
Zend_Oauth_Http_Utility
Definition:
Utility.php:34
Zend_Oauth_Token
Definition:
Token.php:31