0
請告訴我。Сreateorder shopify api ajax
如何創建這裏所規定的次序https://help.shopify.com/api/reference/order#create
,有必要通過使用AJAX 我創建的應用Ajax創建一個訂單,從中拿了API密鑰和API密鑰
$("#button").click(function() {
$.ajax({
headers: {
'Content-Type': 'application/json'
'Accept': 'application/json'
},
url: 'https://API key:API secret [email protected]/admin/orders.json',
type: 'POST',
dataType: 'json',
data: JSON.stringify({
{
"order": {
"line_items": [
{
"variant_id": 447654529,
"quantity": 1
}
]
}
}
}),
success: function(data) {
console.log(data);
}
});
});
告訴我我的錯誤在哪裏?