Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added basic_auth() method #19

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

aisrael
Copy link
Contributor

@aisrael aisrael commented Feb 6, 2018

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