Axios条纹问题。 “invalid_request_error”

时间:2017-12-06 21:43:11

标签: javascript stripe-payments axios

我在我的智慧结束!我想通过条带api创建一个客户。使用curl的例子我没有问题。 这是他们的例子:

curl https://api.stripe.com/v1/customers \ -u sk_test_apikey: \ -d description="Customer for zoey.brown@example.com" \ -d source=tok_visa

当我尝试使用axios执行此操作时,我收到错误“invalid_request_error”,因为它无法正确解析我的数据。这就是我所拥有的:

export const registerNewUser = async (firstName, lastName, email, password) => {
  let config = {
    headers: {
      'Content-Type': 'application/x-www-form-urlencoded',
      'Authorization': `Bearer ${stripeTestApiKey}`
    }
  }
  let data = {
      email: `${email}`,
      description: `Customer account for ${email}`
  }
  await axios.post(stripeCustomerUri, data, config)
    .then(res => {
      console.log("DEBUG-axios.post--res: ", res)
    })
    .catch(err => {
      console.log(JSON.stringify(err, null, 2))
    })
}

在我的控制台中,我看到条带没有以正确的方式接收我的数据。这是我的(有用的部分)响应json:

"response": { 
  "data": { 
    "error": { 
      "type": "invalid_request_error", 
      "message": "Received unknown parameter: {\"email\":\"joe@blow.com\",\"description\":\"Customer account for joe@blow.com\"}", "param": "{\"email\":\"joe@blow.com\",\"description\":\"Customer account for joe@blow.com\"}" } },

根据我的所有其他尝试和此示例错误判断,我没有以正确的格式传递数据...但是,当我将-d传递给我的curl命令时,一切都按预期工作...如果我发送一个空字符串data它也可以...

有没有人知道为什么/这是怎么回事?通过curl的“数据”对象与我的javascript数据对象有何不同?

1 个答案:

答案 0 :(得分:3)

问题在于axios默认使用application / json内容类型,而条带api需要form-url-encoded ...这需要在传递给条带api之前使用像querystring这样的库来解析数据对象...希望这有助于某人!