I'm attempting to fetch()
Stripe's API to create a payment token directly from the front-end with React Native.
I'm doing so with the following:
const genCard = {
'card[number]': "4242424242424242",
'card[exp_month]': "11",
'card[exp_year]': "25,
'card[cvc]': "111"
}
var formBody = []
for (var property in genCard) {
var encodedKey = encodeURIComponent(property)
var encodedValue = encodeURIComponent(genCard[property])
formBody.push(encodedKey + "=" + encodedValue)
}
formBody = formBody.join("&")
const result = fetch("https://api.stripe.com/v1/tokens", {
method: "post",
headers: {
Accept: "application/json",
"Content-Type": "application/x-www-form-urlencoded",
Authorization: "Bearer " + "sk_test_4eC39HqLyjWDarjtT1zdp7dc",
},
body: formBody
}).then(response => response.json())
console.log('logging: \n', genCard, '\n', formBody, '\n', result)
The logging output gives me the following:
logging:
{"card[cvc]": "111", "card[exp_month]": "11", "card[exp_year]": "25", "card[number]": "4242424242424242"}
card%5Bnumber%5D=4242424242424242&card%5Bexp_month%5D=11&card%5Bexp_year%5D=25&card%5Bcvc%5D=111
{"_40": 0, "_55": null, "_65": 0, "_72": null}
genCard
contains all the CC data required by Stripe (number, exp_month, exp_year, cvc), and formBody
formats the CC data in accordance to all the documentation and guides I've found online. However, the API response I'm receiving is not the expected payment token, but instead {"_40": 0, "_55": null, "_65": 0, "_72": null}
.
I believe I've followed Stripe's documentation, but either the header data is incorrect or the body data is mis-formatted.
Is anybody familiar with this process? What am I missing?