class Github::Client::Authorizations

def get(*args)

Other tags:
    Api: - public

Returns:
  • (ResponseWrapper) -

Other tags:
    See: https://developer.github.com/v3/oauth_authorizations/#get-a-single-authorization -
def get(*args)
  raise_authentication_error unless authenticated?
  arguments(args, required: [:id])
  get_request("/authorizations/#{arguments.id}", arguments.params)
end