Hi Guys,
I have struggled to get the access token from identity server by calling the following url:
https://identity.reckon.com/connect/authorize?client_id=8b81cbce-c2e0-4ad6-8432-b4364d27a5f8&res...I've tried it by Postman and WSO2 ESB and also hit it through the browser, I've received the same error:
The client application made an invalid request error.
When I changed the redirect url to something else (i.e add http:// at start), the error is changed to "The client application is not known or is not authorized."
I checked my application permission for identity server from here:
https://identity.reckon.com/permissions This is "Implicit ClientsResource Permissions
Read dataWrite data"
This is the payload factory which I send to this endpoint "
https://identity.reckon.com/connect/authorize"
Payload:
{ "client_id": "8b81cbce-c2e0-4ad6-8432-b4364d27a5f8", "grant_type": "implicit", "response_type": "id_token+token", "scope": "openid+read+write", "redirect_uri": "
symphony3devau.com";, "state": "random_state", "nonce": "random_nonce" }
I've tried to get access token through the AZURE portal and it works, but the access token is expired after a couple of hours, so I cannot hardcode it in my application.
Could you please guide me how to fix it?
I really appreciate your help