#mihu-issuing-auth
1 messages · Page 1 of 1 (latest)
That looks to be a different authorization id but looking
my bad, this authorization i've linked has the same errors, but here's the original: https://dashboard.stripe.com/acct_1Mu6nZBXveMN8YC0/test/issuing/authorizations/iauth_1OZdwUBXveMN8YC0k3vT2Blj
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Sure, taking a look. It may take some time. Thank you for your patience.
mihu-issuing-auth
We're still looking into this, have real-time auths ever worked for you?
👋 stepping in
no, i've just recently set up the integration.
So the issue here is the JSON you are returning in the response. You can't include a \ in your response body otherwise we don't parse it correctly
ok i've realized the issue, on my end i'm already json-ing the response. i tried sending back a response without using .to_json, but i tried not doing that for a different test authorization and still wasn't able to approve the authorization properly:
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
The response body for that is: "{\"approved\":true}" -- you can see this by looking at the Event in your Dashboard and dropping down the Webhook attempts. Ie: https://dashboard.stripe.com/test/events/evt_1OZdwUBXveMN8YC0u903M3wY
So that still has \ in the response body
wait my mistake lol meant this one: https://dashboard.stripe.com/acct_1Mu6nZBXveMN8YC0/test/issuing/authorizations/iauth_1OZdnzBXveMN8YC0ZYLHOWTz
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Hmm the actual Webhook delivery failed for that one
Not the issuing auth
I'm seeing a invalid_stripe_version error
Looks like you are missing a Stripe-Versions header on your response: https://stripe.com/docs/issuing/controls/real-time-authorizations#webhook-response
ok thank you for you help, i've resolved the issue with the headers was on my end