Update pics_oauthproxy.go

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Anderson Valério 2025-06-02 14:55:00 -03:00 committed by GitHub
parent 58389a741a
commit f6f1f4353c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ func PicsRevokeAcessToken(backendRevokeURL string, accessToken string, clientID
}
if resp.StatusCode() != 200 {
return fmt.Errorf("error revoking access token: %v", resp.Error())
return fmt.Errorf("error revoking access token: status code %d, error: %v", resp.StatusCode(), resp.Error())
}
return nil