Cant get identity with fresh access token. Unauthorized error. solved

I’m calling https://www.patreon.com/api/oauth2/v2/identity
with fresh access token received by oauth redirect

Unauthorized",

  •        "detail": "The server could not verify that you are authorized to access the URL requested. You either supplied the wrong credentials* 
    

and even if I refresh it using ‘https://www.patreon.com/api/oauth2/token’ grant_type refresh_token and received refreshed access token it will give me same error. So it is correct access token not outdated.

But if I use creator access token then it is working.

solved: You need to add scope ‘identity’, identity[email] is not enough

Yes, scope identity and scope identity[email] are different.