2017-04-10 25 views

回答

0

REST API準備爲REST API

這些步驟都需要利用REST API資源:從Magento管理爲REST資源操作

  1. 設置權限面板。
  2. 在Magento Admin Panel中配置不同用戶類型的屬性。
  3. 訪問數據有三種不同類型的用戶:Admin, Customer和Guest。 Admin是後端登錄用戶,客戶 是前端登錄用戶,Guest是未登錄前端 用戶。

準備REST API的Magento管理 面板中的第三方應用程序

  1. 註冊第三方應用程序(消費者)。

  2. 第三方應用程序將利用提供的消費者 憑據調用Magento存儲以獲取訪問令牌,以便 訪問數據。

PHP實例

創建一個簡單的產品與OAuth認證的管理員用戶

<?php 
/** 
* Example of simple product POST 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"; 
     $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); 
} 
+0

它顯示錯誤,如 http://prntscr.com/evudrp –

+0

$ oauthClient-> fetch($ resourceUrl,array(),'POST',array('Content-Type '=>'application/json','Accept'=>'application/json')); –

+0

現在它顯示下面的錯誤。 http://prntscr.com/evxgcq –

相關問題