I mean I created a project with Oauth web credential and Adobe Analytics API. Now I'm trying to use apis for authentication and apis for Adobe Analytics. I just want to get correct user info with authentication APIs.
@igupta By decoding id_token, I only get these fields. Actually I cannot get email and name info with it.{"iss": "https://ims-na1.adobelogin.com","sub": "xxx","aud": "xxx","iat": xxx,"exp": xxx,"at_hash": "xxx","c_hash": "xxx"}
I created a project with Credential OAuth Web and API Adobe Analytics. Here's the scope. Question1: how to get user infoI found that if I add email or profile to scope during authorization, I'll get xxxxx?error=invalid_scope. So when I tried to get user info, I'll only get sub field. Are there any w...