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
Hi,
I was always getting an empty web_hook_info whereas I was trying with a lot of different scopes. It wasn't making any sense.
web_hook_info
It wasn't empty any more once I've remove the following line : return {} unless incoming_webhook_allowed?
return {} unless incoming_webhook_allowed?
I suppose the incoming_webhook_allowed? method is wrong?
incoming_webhook_allowed?
The text was updated successfully, but these errors were encountered:
@ArnoHolo Make sure that your scopes are comma-delimited and do not have any spaces in between them.
For example, this will not work:
scope: "channels:read, incoming-webhook"
This should work:
scope: "channels:read,incoming-webhook"
Sorry, something went wrong.
No branches or pull requests
Hi,
I was always getting an empty
web_hook_info
whereas I was trying with a lot of different scopes. It wasn't making any sense.It wasn't empty any more once I've remove the following line :
return {} unless incoming_webhook_allowed?
I suppose the
incoming_webhook_allowed?
method is wrong?The text was updated successfully, but these errors were encountered: