使用PHPISH API在Shopify中为产品添加自定义Metafields

时间:2015-11-04 08:46:17

标签: php jquery ajax shopify

我正在Shopify中开发一个应用程序,我正在使用Shopify的PHPISH SDK。我必须为产品插入一些自定义元字段。

$(document).on('click', '.activate-btn', function(){
$.ajax({
    type: 'POST',
    url: 'https://real-gun-rights.myshopify.com/admin/products/1364427588/metafields.json',
    data:{ "metafields": [{"namespace": "inventory", "key": "warehouse", "value": 25, "value_type":"integer" }]},
    crossDomain: true, 
    jsonp: true,
    dataType: 'jsonp',
    success: function(data) {
     console.log(data);

    }
});
});

0 个答案:

没有答案