原料药 |Coinimp 公司 |用户/提现 |无效参数 (POST)

API | Coinimp | user/withdraw | Invalid parameters (POST)

提问人:Mashwishi 提问时间:9/18/2021 最后编辑:Mashwishi 更新时间:9/20/2021 访问量:88

问:

这里有人使用 coinimp 并且对我有同样的问题吗? 你修好了吗?你可以帮我吗?

所以我正在尝试测试用户/提款的 POST,我按照它的文档进行了 https://www.coinimp.com/documentation/http-api#user-withdraw 操作,其中明确指出参数是站点密钥、用户和金额。我已经告诉他们(对支持人员)API 不起作用。

enter image description here

我的帐户目前共有 1 330 827
enter image description here

我试图通过 https://reqbin.comhttps://web.postman.co 进行 POST,并给了我同样的错误,即:

{
    "message": "Invalid parameters.",
    "status": "failure"
}

我的 API 请求是(POST + API 密钥和 ID 标头):

https://www.coinimp.com/api/v2/user/withdraw?site-key={sitekey}&user={user_id}&amount={hash amount}
API 网络挖掘

评论


答:

0赞 Mashwishi 9/20/2021 #1

如果它不是表单数据,它将不起作用,我还使用了请求库而不是 axios。

法典:

const mintmeWithdraw = {
    method: "POST",
    url: "https://www.coinimp.com/api/v2/user/withdraw",
    headers: {
        "Content-Type": "multipart/form-data",
        "X-API-ID": 'api-id-here',
        "X-API-KEY": 'api-key-here'
    },
    formData : {
        "site-key" : `you-site-key`,
        "user" : `user-here`,
        "amount" : `hash-amount`
    }
};

request(mintmeWithdraw, async function (err, res, body) {
    if(err) throw err;
});