Open shankarnarayank opened 3 months ago
@shankarnarayank Can you try running using npm run start-local
instead? Let me know if it works.
@anselm94 It is asking for Username and password.
@shankarnarayank It depends on what authentication mechanism have you configured in your subaccount for which the Auth Token URL is used in the default-env.json
. In my case, I tried with BTP Trial account. Since I logged into the trial account already, it redirected back considering the logged-in session.
Getting the following output when running the commands:
npm start
npm run start-noflp
Output
{ "error": "invalid_request", "error_description": "Missing grant type" }
Tried Adding grant types under oauth2-configuration
{ ..., "oauth2-configuration": { "grant-types": ["client_credentials"], "redirect-uris": [ ... ] } }
Note: I understand not setting it will allow the app to choose the suitable one automatically, since it didn't happen here I have tried adding it explicitly, also to no effect.