I am trying to do this tutorial in python.
https://api.slack.com/tutorials/tracks/responding-to-app-mentions
However, it only sends to 'channel', not message 'thread' in channel(the message which user mentioned bot).
Also, It does not show how to see mentioned message infos in app(like message string, message_ts, etc..).
Can I see mentioned message and that messages thread_ts?
plus, this is my code in bot, which message appears to be None
@app.event("app_mention")
def event_test(say, message):
pass
if __name__ == "__main__":
SocketModeHandler(app, app_token).start()