We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems that the auth style used by the library, namely passing token in query params no longer works:
{:error "invalid_auth", :response {:ok false, :error "invalid_auth"}}
You need to pass the token in the Authorization header. Afaik, the easiest way to do this is to use the :oauth-token param accepted by clj-http. Here's what I ended up using: curiousprogrammer-net/slack-pom@f998e92#diff-1a6ed93c553296dc723c8009dc2fd60183c5a3c00d4b50b6ca511fbdead178ccR20
Authorization
:oauth-token
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems that the auth style used by the library, namely passing token in query params no longer works:
You need to pass the token in the
Authorization
header.Afaik, the easiest way to do this is to use the
:oauth-token
param accepted by clj-http.Here's what I ended up using: curiousprogrammer-net/slack-pom@f998e92#diff-1a6ed93c553296dc723c8009dc2fd60183c5a3c00d4b50b6ca511fbdead178ccR20
The text was updated successfully, but these errors were encountered: