Check access token for user id before accessing backend database

Hey @rohit.sharma welcome to the community!

You wont be able to achieve this with an opaque access token - In order for your backend to be able to decode the payload you will need to pass a jwt. You’ll need to configure your native app(s) to pass an audience param (your API identifier) when requesting tokens for users. Some more on the audience here:

Hope this helps!