mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2025-05-10 05:48:46 +00:00
Revoke oauth token on signout
This commit is contained in:
parent
df031d5edd
commit
b83a00aa2c
3 changed files with 18 additions and 0 deletions
|
@ -138,6 +138,16 @@ func (c *Client) AuthenticateToken(ctx context.Context, authCode, redirectURI st
|
|||
return c.authenticate(ctx, params)
|
||||
}
|
||||
|
||||
func (c *Client) RevokeToken(ctx context.Context) error {
|
||||
params := url.Values{
|
||||
"client_id": {c.config.ClientID},
|
||||
"client_secret": {c.config.ClientSecret},
|
||||
"token": {c.GetAccessToken(ctx)},
|
||||
}
|
||||
|
||||
return c.doAPI(ctx, http.MethodPost, "/oauth/revoke", params, nil, nil)
|
||||
}
|
||||
|
||||
func (c *Client) authenticate(ctx context.Context, params url.Values) error {
|
||||
u, err := url.Parse(c.config.Server)
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue