I can't access third-party api's from Neutrinos studio Client service. It shows CORS issue

Hi everyone, I tried to access third-party openApi from Neutrinos studio front-end app client service. It through CORS error. Guide me, how to resolve it.

1 Like

Hello @GeethaNagarajan ,Could you please share the steps you followed and provide screenshots

step 1: I have create flow on client service -


Each Node screenshort -
start node -
script node -
http request-
log node-

step 2: call this client service flow from pages flow


pageFlow start -
scriptNode-
call service -
this is the flow I have created

2 Likes

Hello @GeethaNagarajan ,
This is not an issue with your flow — it’s happening because of CORS (a browser security rule). By default, browsers block requests to APIs that don’t allow your app’s domain.

For learning and testing, you can install a CORS extension in your browser. The extension adds a header called Access-Control-Allow-Origin which tells the browser to allow the request. That’s why the extension is needed — otherwise, the browser will block it.

Later, when you work on real projects, this will usually be fixed from the backend side, so you won’t need the extension

2 Likes

Awesome, issue resolved. Thankyou so much.

2 Likes