You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TheTokenForm currently validates the token by making an API call to see if GitHub responds with a user, but it doesn't verify the token has the required scopes.
Without the requires scopes (repo, delete_repo) the user will not be able to archive/delete any repos.
Solution
Find a way to check the X-OAuth-Scopes header in the API response, inside TheTokenForm.vue. It should contain delete_repo, repo
The text was updated successfully, but these errors were encountered:
Background
TheTokenForm currently validates the token by making an API call to see if GitHub responds with a user, but it doesn't verify the token has the required scopes.
Without the requires scopes (repo, delete_repo) the user will not be able to archive/delete any repos.
Solution
Find a way to check the
X-OAuth-Scopes
header in the API response, insideTheTokenForm.vue
. It should containdelete_repo, repo
The text was updated successfully, but these errors were encountered: