This document describes how to pass OAuth2.0 authentication and receive an access token by block coding method.



▶About OAuth2.0

▶OAuth2.0 Block

1) OAuth2.0 Authorize

Untitled

2) OAuth2.0 Token Create

그림48.png

No. Function
1 Enter the expiration time of the access token in seconds.
2 Specify the type of access token. Issue the Bear type Token if the default is null.
3 Use to specify the range of api accessible through the access token. In the form of an ArrayList, enter the value of the scope specified in the Request data and the additional scope.
4 The expiration time of the refresh token, which is also written in seconds.
5 When issuing a new access token with a refresh token,select whether to receive a new refresh token with true/false.
6 Use to define an additional function or separate extensions to specify your own OAuth 2.0 authentication method.

3) OAuth2.0 Token Verify