Stripe API connector undefined error: this header name is not correct undefined

I really not sure why the API connector is not working for me.

I am trying to test a charge in Stripe, it works in Postman

but in Bubble I get an undefined error: this header name is not correct undefined (What the heck?)


am I missing something obvious?

stripe docs: Create a charge

@mattmazzega @eve

Try it without the ‘content-type’ header and have the parameters set as querystrings.

That’s how I’ve got mine set up (although I’m using the checkout endpoint, and not the charges endpoint, so it may be different).

1 Like

oh la la it’s working now. thanks!
now I just need to figure out what APIs to use from stripe universe and I’m golden!

3 Likes

same issue . prev solution not working per the photo belo

err = “header name is not correct undefined”

standard idiom works elsewhere :

curl POST -d application=s3uploadservice.bubbleapps.io -d email=rowntreerob@yahoo.com https://infinite-mountain-20609

and on POSTMAN w explicit header the curl defaults

using -H “content-type: application/x-www-form-urlencoded”

syntax idiom with the connector is random rather than idempotent!

–RESOLVE__