Sha256: a6f4ca2cbf31af56e008a6fc7e952041181639adfb080d3ca6bc9495cd5a0a0b
Contents?: true
Size: 713 Bytes
Versions: 20
Compression:
Stored size: 713 Bytes
Contents
# bandwidth # # This file was automatically generated by APIMATIC v2.0 # ( https://apimatic.io ). require 'base64' module Bandwidth # Utility class for basic authorization. class TwoFactorAuthBasicAuth # Add basic authentication to the request. # @param [HttpRequest] The HttpRequest object to which authentication will # be added. def self.apply(config, http_request) username = config.two_factor_auth_basic_auth_user_name password = config.two_factor_auth_basic_auth_password value = Base64.strict_encode64("#{username}:#{password}") header_value = "Basic #{value}" http_request.headers['Authorization'] = header_value end end end
Version data entries
20 entries across 20 versions & 1 rubygems