Skip to content

Instantly share code, notes, and snippets.

@agungsetiawan
Created March 31, 2020 03:39
Show Gist options
  • Save agungsetiawan/82c1da04d07c39fcd33cb675470835bc to your computer and use it in GitHub Desktop.
Save agungsetiawan/82c1da04d07c39fcd33cb675470835bc to your computer and use it in GitHub Desktop.
def call
# code omitted
conn = Faraday.new
res = conn.get do |req|
req.url "#{ENV['TRANSACTION_HOST']}/transactions?user_id=#{user_id}"
req.headers['Content-Type'] = 'application/json'
req.headers['InternalAPIPassword'] = ENV['INTERNAL_API_PASSWORD']
req.headers['UserCode'] = ENV['USER_CODE']
req.headers['UserRole'] = ENV['USER_ROLE']
end
# code omitted
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment