-
Notifications
You must be signed in to change notification settings - Fork 147
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
Document for faraday client #124
Comments
So far, this is how I make it work: connection = Faraday.new(url: host)
connection.get url, params do |request|
ApiAuth.sign!(request, access_id, secret_key, digest: 'sha256')
end However, I need to add Wondering if it is possible to do it. |
Hey @mgomes, Sorry to @ you directly, just wondering if ApiAuth support Faraday middleware at the moment, as for middleware, what I get is request_env, not request object from Faraday |
@leomao10 when you call |
Hi There, I could not find any document for
api-auth
faraday client.Is there any example code other than spec
The text was updated successfully, but these errors were encountered: