i have a REST API that response with XML. As far as i understood for that case i need to use the HTTP request component flow. Unfortunately this is also not an option because of the CORS. Any idea how to implement that?
“Handling XML response in REST API” feature is still on the way:
In the meantime, as suggested in the link below, you indeed need to use an HTTP request:
You can then use a ‘Custom JS’ flow function to transform XML to JSON, for instance via a library below:
In case you are getting a CORS issue, that most likely has to do with configured CORS headers on the destination server. Thus, the issue needs to be resolved on the server, not the AppGyver side.
More info: