GetAccessToken URL variation

Hi @mythz,

Can you kindly guide me why this getAccessToken URL is not working

http://localhost:5001/Auth/GetAccessToken?refreshToken=eyJ0eXA

However this URL is working

http://localhost:5001/json/reply/Authenticate/getAccessToken?refreshToken=eyJ0eX..

For me both URL’s should be fine, kindly advise.

Thanks

Please read the Routing docs for the format of the Predefined Route, e.g.

To call APIs via JSON you can use either:

  • /api/{Request}
  • /json/reply/{Request}

The /auth route is for the Autenticate service, i.e. it’s a single service, not a route for calling other APIs.