Jyothis Jose
Jyothis Jose

Reputation: 21

How can we refresh the skype bot token

How can i refresh the skype bot token obtained via https://login.microsoftonline.com/common/oauth2/v2.0/token

Upvotes: 0

Views: 625

Answers (2)

Konstantin Lutskiy
Konstantin Lutskiy

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

Ezequiel Jadib
Ezequiel Jadib

Reputation: 14787

Take a look to the OAuth 2.0 Authorization Flow. There you will find all the details around refreshing the access token.

OAuth 2.0 Refresh Token

Upvotes: 0

Related Questions