123456789_123456789_123456789_123456789_123456789_

Module: Octokit::Client::OauthApplications

Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Included In:
Defined in: lib/octokit/client/oauth_applications.rb

Overview

Methods for the OauthApplications API

Instance Method Summary

Instance Method Details

#check_application_authorization(access_token, options = {})

Alias for #check_token.

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 31

alias check_application_authorization check_token

#check_token(access_token, options = {}) ⇒ Sawyer::Resource Also known as: #check_application_authorization

Check if a token is valid.

Applications can check if a token is valid without rate limits.

Examples:

client = Octokit::Client.new(:client_id => 'abcdefg12345', :client_secret => 'secret')
client.check_token('deadbeef1234567890deadbeef987654321')

Parameters:

  • access_token (String)

    40 character GitHub OAuth access token

Returns:

  • (Sawyer::Resource)

    A single authorization for the authenticated user

See Also:

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 21

def check_token(access_token, options = {})
  options[:access_token] = access_token

  key    = options.delete(:client_id)     || client_id
  secret = options.delete(:client_secret) || client_secret

  as_app(key, secret) do |app_client|
    app_client.post "applications/#{client_id}/token", options
  end
end

#delete_app_authorization(access_token, options = {}) ⇒ Boolean

Delete an app authorization

OAuth application owners can revoke a grant for their OAuth application and a specific user.

Examples:

client = Octokit::Client.new(:client_id => 'abcdefg12345', :client_secret => 'secret')
client.delete_app_authorization('deadbeef1234567890deadbeef987654321')

Parameters:

  • access_token (String)

    40 character GitHub OAuth access token

Returns:

  • (Boolean)

    Result

See Also:

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 99

def delete_app_authorization(access_token, options = {})
  options[:access_token] = access_token

  key    = options.delete(:client_id)     || client_id
  secret = options.delete(:client_secret) || client_secret

  begin
    as_app(key, secret) do |app_client|
      app_client.delete "applications/#{client_id}/grant", options
      app_client.last_response.status == 204
    end
  rescue Octokit::NotFound
    false
  end
end

#delete_app_token(access_token, options = {}) ⇒ Boolean Also known as: #delete_application_authorization, #revoke_application_authorization

Delete an app token

Applications can revoke (delete) a token

Examples:

client = Octokit::Client.new(:client_id => 'abcdefg12345', :client_secret => 'secret')
client.delete_app_token('deadbeef1234567890deadbeef987654321')

Parameters:

  • access_token (String)

    40 character GitHub OAuth access token

Returns:

  • (Boolean)

    Result

See Also:

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 69

def delete_app_token(access_token, options = {})
  options[:access_token] = access_token

  key    = options.delete(:client_id)     || client_id
  secret = options.delete(:client_secret) || client_secret

  begin
    as_app(key, secret) do |app_client|
      app_client.delete "applications/#{client_id}/token", options
      app_client.last_response.status == 204
    end
  rescue Octokit::NotFound
    false
  end
end

#delete_application_authorization(access_token, options = {})

Alias for #delete_app_token.

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 84

alias delete_application_authorization delete_app_token

#reset_application_authorization(access_token, options = {})

Alias for #reset_token.

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 55

alias reset_application_authorization reset_token

#reset_token(access_token, options = {}) ⇒ Sawyer::Resource Also known as: #reset_application_authorization

Reset a token

Applications can reset a token without requiring a user to re-authorize.

Examples:

client = Octokit::Client.new(:client_id => 'abcdefg12345', :client_secret => 'secret')
client.reset_token('deadbeef1234567890deadbeef987654321')

Parameters:

  • access_token (String)

    40 character GitHub OAuth access token

Returns:

  • (Sawyer::Resource)

    A single authorization for the authenticated user

See Also:

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 45

def reset_token(access_token, options = {})
  options[:access_token] = access_token

  key    = options.delete(:client_id)     || client_id
  secret = options.delete(:client_secret) || client_secret

  as_app(key, secret) do |app_client|
    app_client.patch "applications/#{client_id}/token", options
  end
end

#revoke_application_authorization(access_token, options = {})

Alias for #delete_app_token.

[ GitHub ]

  
# File 'lib/octokit/client/oauth_applications.rb', line 85

alias revoke_application_authorization delete_app_token