在Slack API上发送我的第一条消息

时间:2019-11-07 16:47:50

标签: python-3.x slack slack-api

我注册了我的第一个应用,它看起来像这样: enter image description here

所有字段都填充在屏幕截图下方。

现在,我使用their repo上的示例提供了一些基本的python代码。

我创建以下测试脚本:

import traceback
app_id = 'FAKE.VALUE'
client_id = 'FAKE.VALUE'
client_secret = 'FAKE.VALUE'
signin_secret = 'FAKE.VALUE'
verification_token = 'FAKE.VALUE'

items = locals()

import os
import slack

items = locals().copy()

for k in items:

    if '__' not in k:
        val = items[k]

        try:
            client = slack.WebClient(token=val)

            response = client.chat_postMessage(
                channel='CE476K9HT',
                text='Hello-----' + str(val))

            print(response)
        except:
            print(k)
            traceback.print_exc()
            print('-'*50)

但是我得到的所有答复都是:

The server responses with: {'ok':False,'error':'invalid_auth'}

由于某种原因,是否有必要使用路径变量?

我不清楚这里需要哪种身份验证。


做完Erik的建议后,

enter image description here

我有一个xoxp代码,并将重定向网址注册到http://localhost

并添加了以下范围: enter image description here

并将我的代码更新为:

oauth_token ='xoxp-*****************'

import os
import slack

items = locals().copy()

client = slack.WebClient(token=oauth_token)

response = client.chat_postMessage(
    channel='my_channel_id',
    text='Hello-----')

我从网址中获得了频道ID:

https://app.slack.com/client/FOO/my_channel_id

运行代码时,我得到以下信息:

Traceback (most recent call last):
  File "/home/usr/git/slack_messaging/slack_messaging.py", line 20, in <module>
    text='Hello-----')
  File "/home/usr/git/python-slackclient/slack/web/client.py", line 382, in chat_postMessage
    return self.api_call("chat.postMessage", json=kwargs)
  File "/home/usr/git/python-slackclient/slack/web/base_client.py", line 172, in api_call
    return self._event_loop.run_until_complete(future)
  File "/home/usr/anaconda2/envs/beer/lib/python3.7/asyncio/base_events.py", line 573, in run_until_complete
    return future.result()
  File "/home/usr/git/python-slackclient/slack/web/base_client.py", line 241, in _send
    return SlackResponse(**{**data, **res}).validate()
  File "/home/usr/git/python-slackclient/slack/web/slack_response.py", line 176, in validate
    raise e.SlackApiError(message=msg, response=self)
slack.errors.SlackApiError: The request to the Slack API failed.
The server responded with: {'ok': False, 'error': 'missing_scope', 'needed': 'chat:write:user', 'provided': 'admin,identify'}

以退出代码1完成的过程

1 个答案:

答案 0 :(得分:2)

要使脚本正常工作,您需要做两件事。

1。 OAuth令牌

您需要一个有效的OAuth令牌,并在初始化Slack Client时提供它:

client = slack.WebClient(token="xoxb-xxx")

要获取令牌,您需要将Slack应用安装到工作区。您可以在“安装应用程序”下的应用程序管理页面上执行此操作。安装后,您的OAuth令牌也将显示在该页面上。

2。权限

您的Oauth令牌/ Slack应用需要具有发布消息的权限。在应用程序管理页面上,转到“ OAuth和权限”,然后将所需的权限添加到您的应用程序:。例如chat:write:user用于用户令牌。

请注意,您每次都需要重新安装应用程序才能添加权限。