Created
July 26, 2013 21:08
-
-
Save Alir3z4/6092255 to your computer and use it in GitHub Desktop.
Die Magento Die!
This file contains hidden or 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 | |
| /** | |
| * Example of simple product POST using Admin account via Magento REST API. OAuth authorization is used | |
| */ | |
| $callbackUrl = "http://magento-site.com/oauth_admin.php"; | |
| $temporaryCredentialsRequestUrl = "http://magento-site.com/oauth/initiate?oauth_callback=" . urlencode($callbackUrl); | |
| $adminAuthorizationUrl = 'http://magento-site.com/admin/oauth_authorize'; | |
| $accessTokenRequestUrl = 'http://magento-site.com/oauth/token'; | |
| $apiUrl = 'http://magento-site.com/api/rest'; | |
| $consumerKey = '<CONSUMER_KEY>'; | |
| $consumerSecret = '<CONSUMER_SECRET>'; | |
| 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"; | |
| $productData = json_encode(array( | |
| 'type_id' => 'simple', | |
| 'attribute_set_id' => 4, | |
| 'sku' => 'simple' . uniqid(), | |
| 'weight' => 1, | |
| 'status' => 1, | |
| 'visibility' => 4, | |
| 'name' => 'Simple Product', | |
| 'description' => 'Simple Description', | |
| 'short_description' => 'Simple Short Description', | |
| 'price' => 99.95, | |
| 'tax_class_id' => 0, | |
| )); | |
| $headers = array('Content-Type' => 'application/json'); | |
| $oauthClient->fetch($resourceUrl, $productData, OAUTH_HTTP_METHOD_POST, $headers); | |
| print_r($oauthClient->getLastResponseInfo()); | |
| } | |
| } catch (OAuthException $e) { | |
| print_r($e); | |
| } | |
| ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment