0
votes

I create a Bot to sent a request with outgoing webhook, Now i just want to get the text from the json and do not response any thing. So in my falsk app I return Response(status=200)

app = Flask(__name__)

@app.route("/" , methods=['POST'])
def hello():

    # wget webhook post message
    data = json.loads(request.get_data())

    return Response(status=200)



if __name__ == "__main__":
    app.run()

But in the Teams channel still show the message 'Sorry, there was a problem encountered with your request'

1

1 Answers

0
votes

@Elton Wang It is mandatory to send a message from outgoing webhook to MS Teams. You cannot send a empty message body.