class Zoom::Client

Public Instance Methods

request_headers() click to toggle source
# File lib/zoom/client.rb, line 24
def request_headers
  {
    'Accept' => 'application/json',
    'Content-Type' => 'application/json',
    'Authorization' => "Bearer #{access_token}"
  }
end