Check what OAuth scopes you have.
github = Github.new :oauth_token => 'token' github.scopes.all
# File lib/github_api/scopes.rb, line 11 def list(*args) arguments(args) response = get_request("/user", arguments.params) response.headers.oauth_scopes ? response.headers.oauth_scopes.split(',') : response end