Class: RubyLokaliseApi::OAuth2Client

Inherits:
Client show all
Defined in:
lib/ruby_lokalise_api/oauth2_client.rb

Overview

Client used to perform API requests with an OAuth2 access token

Instance Attribute Summary

Attributes inherited from BaseClient

#open_timeout, #timeout, #token, #token_header

Instance Method Summary collapse

Methods included from Rest::Webhooks

#create_webhook, #destroy_webhook, #regenerate_webhook_secret, #update_webhook, #webhook, #webhooks

Methods included from Rest::Translations

#translation, #translations, #update_translation

Methods included from Rest::TranslationProviders

#translation_provider, #translation_providers

Methods included from Rest::TeamUserGroups

#add_members_to_group, #add_projects_to_group, #create_team_user_group, #destroy_team_user_group, #remove_members_from_group, #remove_projects_from_group, #team_user_group, #team_user_groups, #update_team_user_group

Methods included from Rest::TeamUsers

#destroy_team_user, #team_user, #team_users, #update_team_user

Methods included from Rest::Teams

#teams

Methods included from Rest::TeamUserBillingDetails

#create_team_user_billing_details, #team_user_billing_details, #update_team_user_billing_details

Methods included from Rest::Tasks

#create_task, #destroy_task, #task, #tasks, #update_task

Methods included from Rest::Snapshots

#create_snapshot, #destroy_snapshot, #restore_snapshot, #snapshots

Methods included from Rest::Screenshots

#create_screenshots, #destroy_screenshot, #screenshot, #screenshots, #update_screenshot

Methods included from Rest::Segments

#segment, #segments, #update_segment

Methods included from Rest::QueuedProcesses

#queued_process, #queued_processes

Methods included from Rest::Projects

#create_project, #destroy_project, #empty_project, #project, #projects, #update_project

Methods included from Rest::PaymentCards

#create_payment_card, #destroy_payment_card, #payment_card, #payment_cards

Methods included from Rest::Orders

#create_order, #order, #orders

Methods included from Rest::Languages

#create_project_languages, #destroy_project_language, #project_language, #project_languages, #system_languages, #update_project_language

Methods included from Rest::Keys

#create_keys, #destroy_key, #destroy_keys, #key, #keys, #update_key, #update_keys

Methods included from Rest::Jwts

#create_jwt

Methods included from Rest::Files

#destroy_file, #download_files, #files, #upload_file

Methods included from Rest::CustomTranslationStatuses

#create_custom_translation_status, #custom_translation_status, #custom_translation_status_colors, #custom_translation_statuses, #destroy_custom_translation_status, #update_custom_translation_status

Methods included from Rest::Contributors

#contributor, #contributors, #create_contributors, #destroy_contributor, #update_contributor

Methods included from Rest::Comments

#comment, #comments, #create_comments, #destroy_comment, #project_comments

Methods included from Rest::Branches

#branch, #branches, #create_branch, #destroy_branch, #merge_branch, #update_branch

Constructor Details

#initialize(token, params = {}) ⇒ OAuth2Client

Returns a new instance of OAuth2Client.



6
7
8
9
10
# File 'lib/ruby_lokalise_api/oauth2_client.rb', line 6

def initialize(token, params = {})
  super(token, params)
  @token_header = 'Authorization'
  @token = "Bearer #{@token}"
end