为什么我收到Selly的身份验证错误?

时间:2019-04-11 19:37:52

标签: api webhooks

我希望能够将Selly API与我已经完成的请求一起使用,但是它在本地有效,在Google Cloud服务器上,它会返回有关系统国家/地区代码的身份验证错误。

我已经尝试过获取/设置iw,但是失败了,并且仍然呈现身份验证错误。

我正在跑步: MySQL 5.7.25-0ubuntu0.18.10.2 PHP 7.2.15-0ubuntu0.18.10.2 NodeJS v8.11.4 Apache / 2.4.34(Ubuntu)

我正在使用请求lib在节点中执行请求。

var options = {
        method: 'POST',
        url: 'https://selly.gg/api/v2/pay',
        headers:
        {
                'Authorization': 'Basic MYAUTHKEY'
        },
        formData:
        {
            title: 'test',
            gateway: 'Bitcoin',
            value: tvalue,
            currency: 'GBP',
            return_url: 'https://website.com/return',
            webhook_url: 'https://website.com/webhook?secret=NO',
            white_label: 'true'
        }
    };

    request(options, function (error, response, body) {
        if (error) throw new Error(error);

        console.log(response);
        console.log(body);
    };

0 个答案:

没有答案