Reputation: 21
How can i refresh the skype bot token obtained via https://login.microsoftonline.com/common/oauth2/v2.0/token
Upvotes: 0
Views: 625
Reputation: 11
This token has grant_type=client_credentials so you don't need OAuth2 refresh logic for it. Just request a new token when the old one expires.
Upvotes: 1
Reputation: 14787
Take a look to the OAuth 2.0 Authorization Flow. There you will find all the details around refreshing the access token.
Upvotes: 0