-
-
Save oliver-montes/4429670 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Copyright Magento 2012 | |
* Example of products list retrieve using Customer account via Magento | |
REST API. OAuth authorization is used | |
*/ | |
$callbackUrl = "http://yourhost/oauth_customer.php"; | |
$temporaryCredentialsRequestUrl = | |
"http://magentohost/oauth/initiate?oauth_callback=" . | |
urlencode($callbackUrl); | |
$adminAuthorizationUrl = 'http://magentohost/oauth/authorize'; | |
$accessTokenRequestUrl = 'http://magentohost/oauth/token'; | |
$apiUrl = 'http://magentohost/api/rest'; | |
$consumerKey = 'yourconsumerkey'; | |
$consumerSecret = 'yourconsumersecret'; | |
session_start(); | |
if (!isset($_GET['oauth_token']) && isset($_SESSION['state']) && | |
$_SESSION['state'] == 1) { | |
$_SESSION['state'] = 0; | |
} | |
try { | |
$authType = ($_SESSION['state'] == 2) ? OAUTH_AUTH_TYPE_AUTHORIZATION | |
: OAUTH_AUTH_TYPE_URI; | |
$oauthClient = new OAuth($consumerKey, $consumerSecret, | |
OAUTH_SIG_METHOD_HMACSHA1, $authType); | |
$oauthClient->enableDebug(); | |
if (!isset($_GET['oauth_token']) && !$_SESSION['state']) { | |
$requestToken = | |
$oauthClient->getRequestToken($temporaryCredentialsRequestUrl); | |
$_SESSION['secret'] = $requestToken['oauth_token_secret']; | |
$_SESSION['state'] = 1; | |
header('Location: ' . $adminAuthorizationUrl . '?oauth_token=' . | |
$requestToken['oauth_token']); | |
exit; | |
} else if ($_SESSION['state'] == 1) { | |
$oauthClient->setToken($_GET['oauth_token'], $_SESSION['secret']); | |
$accessToken = | |
$oauthClient->getAccessToken($accessTokenRequestUrl); | |
$_SESSION['state'] = 2; | |
$_SESSION['token'] = $accessToken['oauth_token']; | |
$_SESSION['secret'] = $accessToken['oauth_token_secret']; | |
header('Location: ' . $callbackUrl); | |
exit; | |
} else { | |
$oauthClient->setToken($_SESSION['token'], $_SESSION['secret']); | |
$resourceUrl = "$apiUrl/products"; | |
$oauthClient->fetch($resourceUrl); | |
$productsList = json_decode($oauthClient->getLastResponse()); | |
print_r($productsList); | |
} | |
} catch (OAuthException $e) { | |
print_r($e); | |
} | |
<?php | |
/** | |
* Example of products list retrieve using admin account via Magento REST | |
API. oAuth authorization is used | |
*/ | |
$callbackUrl = "http://yourhost/oauth_admin.php"; | |
$temporaryCredentialsRequestUrl = | |
"http://magentohost/oauth/initiate?oauth_callback=" . | |
urlencode($callbackUrl); | |
$adminAuthorizationUrl = 'http://magentohost/admin/oAuth_authorize'; | |
$accessTokenRequestUrl = 'http://magentohost/oauth/token'; | |
$apiUrl = 'http://magentohost/api/rest'; | |
$consumerKey = 'yourconsumerkey'; | |
$consumerSecret = 'yourconsumersecret'; | |
session_start(); | |
if (!isset($_GET['oauth_token']) && isset($_SESSION['state']) && | |
$_SESSION['state'] == 1) { | |
$_SESSION['state'] = 0; | |
} | |
try { | |
$authType = ($_SESSION['state'] == 2) ? OAUTH_AUTH_TYPE_AUTHORIZATION | |
: OAUTH_AUTH_TYPE_URI; | |
$oauthClient = new OAuth($consumerKey, $consumerSecret, | |
OAUTH_SIG_METHOD_HMACSHA1, $authType); | |
$oauthClient->enableDebug(); | |
if (!isset($_GET['oauth_token']) && !$_SESSION['state']) { | |
$requestToken = | |
$oauthClient->getRequestToken($temporaryCredentialsRequestUrl); | |
$_SESSION['secret'] = $requestToken['oauth_token_secret']; | |
$_SESSION['state'] = 1; | |
header('Location: ' . $adminAuthorizationUrl . '?oauth_token=' . | |
$requestToken['oauth_token']); | |
exit; | |
} else if ($_SESSION['state'] == 1) { | |
$oauthClient->setToken($_GET['oauth_token'], $_SESSION['secret']); | |
$accessToken = | |
$oauthClient->getAccessToken($accessTokenRequestUrl); | |
$_SESSION['state'] = 2; | |
$_SESSION['token'] = $accessToken['oauth_token']; | |
$_SESSION['secret'] = $accessToken['oauth_token_secret']; | |
header('Location: ' . $callbackUrl); | |
exit; | |
} else { | |
$oauthClient->setToken($_SESSION['token'], $_SESSION['secret']); | |
$resourceUrl = "$apiUrl/products"; | |
$oauthClient->fetch($resourceUrl); | |
$productsList = json_decode($oauthClient->getLastResponse()); | |
print_r($productsList); | |
} | |
} catch (OAuthException $e) { | |
print_r($e); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment