I have no idea what should I do with this error. The error says:
Notice: Undefined index: state in /home/kataloggrosir/server/magento/rest.php on line 26Warning: Use of undefined constant OAUTH_AUTH_TYPE_URI - assumed 'OAUTH_AUTH_TYPE_URI' (this will throw an Error in a future version of PHP) in /home/kataloggrosir/server/magento/rest.php on line 26Fatal error: Uncaught Error: Class 'OAuth' not found in /home/kataloggrosir/server/magento/rest.php:27 Stack trace: #0 {main} thrown in /home/kataloggrosir/server/magento/rest.php on line 27
This is the code that I use:
<?php
/**
* Example of retrieving the products list using Admin account via Magento REST API. OAuth authorization is used
* Preconditions:
* 1. Install php oauth extension
* 2. If you were authorized as a Customer before this step, clear browser cookies for 'yourhost'
* 3. Create at least one product in Magento
* 4. Configure resource permissions for Admin REST user for retrieving all product data for Admin
* 5. Create a Consumer
*/
// $callbackUrl is a path to your file with OAuth authentication example for the Admin user
// $callbackUrl = "http://yourhost/oauth_admin.php";
$callbackUrl = "http://localhost/rest.php";
$temporaryCredentialsRequestUrl = "https://fashionbag/oauth/initiate?oauth_callback=" . urlencode($callbackUrl);
$adminAuthorizationUrl = 'https://fashionbag/admin/oAuth_authorize';
$accessTokenRequestUrl = 'http://fashionbag/oauth/token';
$apiUrl = 'http://fashionbag/api/rest';
$consumerKey = '9c766c5480101ac0869d843472b1640c';
$consumerSecret = '004e99e3958bb0cbd739d983a6ad76fc';
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, array(), 'GET', array('Content-Type' => 'application/json'));
$productsList = json_decode($oauthClient->getLastResponse());
print_r($productsList);
}
} catch (OAuthException $e) {
print_r($e->getMessage());
echo "<br/>";
print_r($e->lastResponse);
}
Thanks for the help in advance. Sorry, I'm super noob at Magento, and this is my first time trying to use the API.