簡體   English   中英

從 Python API 中找出 Slack 消息的時間戳

[英]Find out time stamp of Slack message from Python API

我創建了 Slack 應用程序,向其中添加了 Bot 和 Incoming Webhook,並使用 Bot 發布了一些消息。 現在我想找出 Slack 消息的時間戳,以便稍后使用chat.delete方法將其刪除。

我發現我可以使用channels.history方法。

這是我嘗試使用它的方式。 我將它與 OAuth 訪問令牌下的令牌一起使用,因為根據文檔我不能將 Bot 令牌與channels.history方法一起使用。

from slackclient import SlackClient
slack_token_user_token = 'xoxp-long_string_of_integers'
sc_user_token = SlackClient(slack_token_user_token)

sc_user_token.api_call(
    "channels.history",
  channel="CHXXXXXXX")

我得到以下錯誤:

{'error': 'missing_scope',
 'headers': {'Access-Control-Allow-Headers': 'slack-route, x-slack-version-ts',
  'Access-Control-Allow-Origin': '*',
  'Access-Control-Expose-Headers': 'x-slack-req-id',
  'Cache-Control': 'private, no-cache, no-store, must-revalidate',
  'Connection': 'keep-alive',
  'Content-Encoding': 'gzip',
  'Content-Length': '108',
  'Content-Type': 'application/json; charset=utf-8',
  'Date': 'Fri, 05 Apr 2019 18:18:11 GMT',
  'Expires': 'Mon, 26 Jul 1997 05:00:00 GMT',
  'Pragma': 'no-cache',
  'Referrer-Policy': 'no-referrer',
  'Server': 'Apache',
  'Strict-Transport-Security': 'max-age=31536000; includeSubDomains; preload',
  'Vary': 'Accept-Encoding',
  'Via': '1.1 f0f1092b2ad1f0e573a4fcbefe4fb621.cloudfront.net (CloudFront)',
  'X-Accepted-OAuth-Scopes': 'channels:history',
  'X-Amz-Cf-Id': 'fSm6uo2H88E43JCvqd2h5mohnzA6z0B3kmdsG3u9nW0PJNrsrpK7mg==',
  'X-Cache': 'Miss from cloudfront',
  'X-Content-Type-Options': 'nosniff',
  'X-OAuth-Scopes': 'identify,bot,incoming-webhook',
  'X-Slack-Req-Id': 'c158668d-ddc9-4bbc-9a7d-6b9a9011d2dc',
  'X-Via': 'haproxy-www-yfr6',
  'X-XSS-Protection': '0'},
 'needed': 'channels:history',
 'ok': False,
 'provided': 'identify,bot,incoming-webhook'}

如果這是權限問題,我如何找到要使用的正確令牌?

根據您發布的錯誤消息,使用的令牌缺少所需的范圍。

'需要':'頻道:歷史'

看起來您提供了無法工作的機器人令牌。

'提供':'識別,機器人,傳入網絡鈎子'

提供訪問令牌並確保首先添加channel.history范圍並重新安裝應用程序以激活。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM