We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4e8fba commit 3ccb4dcCopy full SHA for 3ccb4dc
lib/twilio-ruby/http/http_client.rb
@@ -31,7 +31,7 @@ def _request(request)
31
f.options.params_encoder = Faraday::FlatParamsEncoder
32
f.request :url_encoded
33
f.headers = request.headers
34
- f.basic_auth(request.auth[0], request.auth[1])
+ f.request(:basic_auth, request.auth[0], request.auth[1])
35
f.proxy = "#{@proxy_prot}://#{@proxy_auth}#{@proxy_path}" if @proxy_prot && @proxy_path
36
f.options.open_timeout = request.timeout || @timeout
37
f.options.timeout = request.timeout || @timeout
0 commit comments