2017-07-28 41 views

回答

0

下面的示例代碼從該Documentation link

$client = new SoapClient('http://magentohost/api/v2_soap/?wsdl'); 

// If some stuff requires api authentification, 
// then get a session token 
$session = $client->login('apiUser', 'apiKey'); 

// get attribute set 
$attributeSets = $client->catalogProductAttributeSetList($session); 
$attributeSet = current($attributeSets); 

$result = $client->catalogProductCreate($session, 'simple', $attributeSet->set_id, 'product_sku', array(
    'categories' => array(2), 
    'websites' => array(1), 
    'name' => 'Product name', 
    'description' => 'Product description', 
    'short_description' => 'Product short description', 
    'weight' => '10', 
    'status' => '1', 
    'url_key' => 'product-url-key', 
    'url_path' => 'product-url-path', 
    'visibility' => '4', 
    'price' => '100', 
    'tax_class_id' => 1, 
    'meta_title' => 'Product meta title', 
    'meta_keyword' => 'Product meta keyword', 
    'meta_description' => 'Product meta description' 
)); 
+0

thnks答覆。但是如何在salesforce中傳遞這個參數不是PHP。 –

相關問題