Skip to content

Added basic_auth() method#19

Open
aisrael wants to merge 2 commits into
crystal-community:masterfrom
aisrael:added_basic_auth_method
Open

Added basic_auth() method#19
aisrael wants to merge 2 commits into
crystal-community:masterfrom
aisrael:added_basic_auth_method

Conversation

@aisrael

@aisrael aisrael commented Feb 6, 2018

Copy link
Copy Markdown
Contributor

This is patterned after Faraday's own basic_auth() method.

Usage
    client = Cossack::Client.new(TEST_SERVER_URL) do |client|
      client.basic_auth("test", "secret")
    end

which is equivalent setting headers["Authorization"] to "Basic #{Base64.strict_encode(username, password)}"

Test
    client.headers["Authorization"].should_not be_nil
    client.headers["Authorization"].should eq("Basic dGVzdDpzZWNyZXQ=")

(This branch is built upon and also includes the fix for #16.)

Dakad added a commit to Dakad/cossack.cr that referenced this pull request Oct 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant