#Sato-oracle-blocked
1 messages ยท Page 1 of 1 (latest)
"allowedUrls": [
"https://www.stripe.com",
"https://checkout.stripe.com",
"https://sessions.stripe.com",
"https://js.stripe.com",
"https://api.stripe.com",
"https://m.stripe.com",
"https://checkout.stripe.com/pay",
"https://api.breakingbadquotes.xyz",
"https://a.stripecdn.com",
"https://atlas.stripe.com",
"https://auth.stripe.com",
"https://b.stripecdn.com",
"https://billing.stripe.com",
"https://buy.stripe.com",
"https://c.stripecdn.com",
"https://climate.stripe.com",
"https://connect.stripe.com",
"https://dashboard.stripe.com",
"https://express.stripe.com",
"https://files.stripe.com",
"https://hooks.stripe.com",
"https://invoice.stripe.com",
"https://invoicedata.stripe.com",
"https://js.stripe.com",
"https://m.stripe.com",
"https://m.stripe.network",
"https://manage.stripe.com",
"https://pay.stripe.com",
"https://payments.stripe.com",
"https://q.stripe.com",
"https://qr.stripe.com",
"https://r.stripe.com",
"https://verify.stripe.com",
"https://stripe.com",
"https://terminal.stripe.com",
"https://uploads.stripe.com"
]
thanks for your atention
We have the full list of domains listed at https://stripe.com/docs/ips#stripe-domains
Indeed, I already insert the list called "Stripe domains"
Should I add "Stripe Terminal domains" as well?
If your'e not using Terminal you shouldn't need them
When using "stripe.checkout.sessions.create" is any other URL API call that is not in this list?
Since I'm still getting blocked, even with this list ๐ฆ
Are you sure it's the request to create the Checkout Session that's getting blocked? When you log into the dashboard do you see those requests going through at all?
Those request don't even appear in the dashboard. I guess is because the call is no made
When I test the same code in localhost It works fine
Gotcha - have you talked to oracle about this at all? To get more insight into how to set this all up properly to work?
I already made a service request. In the next hours I should receive response. In the oracle docs they also say that maybe when calling external APIs I have to add proxy server information
Do I have to add proxy server information in Stripe?
How you do it depends on which of the client libraries you use, but yes, you should be able to add a proxy
const stripe = Stripe('sk_test_...', {
httpProxy: new ProxyAgent(process.env.http_proxy),
});
Is that the way to add proxy information?
That's my last question. Sorry to bother
Yup! If you're using stripe-node that's how you would do it https://github.com/stripe/stripe-node#configuring-a-proxy
Thank you so much ๐