shapeshift.io API:“缺少输出金额或存款金额”

问题描述 投票:0回答:2

使用shapeshift api,发布到https://www.shapeshift.io/sendamount,我收到此错误:“缺少输出金额或存款金额”。

请求JSON字符串:{ "returnAddress" : "19z95ce8a1UwV3PCCCBE7AD7hNXENW3gu4", "withdrawal" : "0xFF7c7d21cf668F59A85188126D88106c62056Ec1", "pair" : "btc_eth", "amount" : "1" }

怎么了?

json request
2个回答
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);
    });
© www.soinside.com 2019 - 2024. All rights reserved.