2017-06-21 88 views

回答

0

我通過將POST的'Content-Type'標題設置爲'application/json'來清除這個錯誤。

0

在我的PHP的情況下,而不是使用JSON字符串,我去了一個URL字符串,並清除了錯誤。

使用Node.js語言或JavaScript,這個工作對我來說沒有問題:

var settings = { 
    "async": true, 
    "crossDomain": true, 
    "url": "https://shapeshift.io/sendamount", 
    "method": "POST", 
    "headers": { 
     "Content-Type": "application/x-www-form-urlencoded" 
    }, 
    "data": { 
     "amount": ".002", 
     "pair": "ltc_btc" 
    } 
    } 

    $.ajax(settings).done(function (response) { 
    console.log(response); 
    });