#killuaeye99
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- killuaeye99, 3 minutes ago, 4 messages
- killuaeye99, 4 hours ago, 96 messages
How can I help?
I can't call my api from stripe app
I think this is main reason
ui extensions have a null origin
Can you tell me how to fix this?
"content_security_policy": {
"connect-src": [
"https://billingo-stripe-backend.onrender.com/api/v1/billingo"
],
"image-src": null,
"purpose": ""
}
},
"constants": {
"API_BASE": "https://billingo-stripe-backend.onrender.com/api/v1/billingo"
},
I already added this option to call api but i can't get any data from this.
What's the exact error you see and where?
You're missing the trailing slash in your manifest:
URLs of permitted third-party APIs. If the URL ends in a slash, all of its children also receive permission
It can't use the child route of /document-blocks on your API because of the missing trailing slash
well, it works well
Can you just try what I suggested please?
Not sure what you're showing me
To be clear, that configuration is fine and valid. It'll allow requests only to https://api.example.com/v1 but not https://api.example.com/v1/foo
Which is exactly what you're trying to do: you allow /billingo but not /billingo/document-blocks
You can either explicitly add every child path/route, or add the trailing slash
Great! No problem, glad I could help!