No matter how many api permissions I added in the Azure Active directory for my application, There are only the default four scopes : "offline_access openid profile User.Read".
I added some api permissions such as "Calendars.Read",but the token always shown in jwt.ms as follows.
"scp": "offline_access openid profile User.Read",
But after I added api permissions, I think it should be:
"scp": "offline_access openid profile User.Read Calendars.Read Calendars.ReadWrite"