编辑:自从我问了这个问题以来,我创建了一个ngrok URL来在用户按下按钮时接收Slack POST。
但是,每次我按下按钮时,都会显示以下内容:"POST / HTTP/1.1" 404 -
我正在使用本地Flask URL,下面的代码:
from flask import Flask, request
app = Flask(__name__)
@app.route('/payload', methods=['POST'])
def incoming_slack_message():
req = request.get_json(Force=True)
info = request.form['channel_id']
print(req)
print(info)
print('did it work???')
return 'action successful'
@app.route('/slack/blocks', methods=['POST'])
def incoming_slack_options():
req = request.get_json(Force=True)
info = request.form['payload']
print(req)
print(info)
print('Did it work here??')
return 'ok'
if __name__ == '__main__':
app.run(port=3000, debug = True)
我已阅读到我需要在代码块中包含callback_id,但是每当我得到TypeError: 'NoneType' object is not subscriptable
这是我使用的块,而不是callback_id
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Once your machine is selected, click here."
},
"accessory": {
"type": "button",
"text": {
"type": "plain_text",
"text": "Change",
},
"value": "click_me_123",
"action_id": "button"
}
}
我确定我的烧瓶代码中有问题,因为我对Flask几乎一无所知。我认为我的Slack Block没有什么问题,但是我仍然觉得应该有一个callback_id。感谢您的时间。
答案 0 :(得分:0)
好吧,我已经获得了生成响应的按钮! Flask代码如下
from flask import Flask, request, Response, jsonify
import requests
import json
app = Flask(__name__)
@app.route('/', methods=['POST'])
def resp():
data = request.json
button_info = request.form['payload']
webhook_url = 'webhook from slack'
slack_data = { 'text': "How can I help you?"}
response = requests.post(
webhook_url, data=json.dumps(slack_data),
headers={'Content-Type': 'application/json'}
)
return(jsonify(data), print(button_info))
if __name__ == '__main__':
app.run(port=3000, debug = True)
button_info将打印出所有数据。 我确定我可以摆脱其中的一些生产线/进口,并且仍然可以使用,但这可以完成工作!
***此代码与本地Web服务器的ngrok公共URL结合在一起。
brew cask install ngrok
后跟
ngrok http 3000
匹配我的代码中的3000端口
webhook_url
来自松弛API网站。