I think the link provided by ngrok itself if https isn't it. Method not allowed is because your program is not accepting POST request. I think your server has to accept the POST request with data in the form body.
@sujith@tonystark but then why i m not getting anything in ngrok web interface under summary, even though i have rejected orders . anything else i m missing
Method not allowed is because your program is not accepting POST request. I think your server has to accept the POST request with data in the form body.
"I think your server has to accept the POST request with data in the form body." - what needs to be done for it exactly could you please mention?
@app.route('/post', methods=['POST'])
to this :
@app.route('/post', methods=['POST', 'HEAD'])
HEAD /post 200 OK
Can i test it now after market. if order gets rejected it should appear here, no?
anything else i m missing