Hi, sorry for the extreme noob question, but I can't figure this out.
I need to send some data (i.e, a list of words) from a Google Script to my script in PA, process it, and then return a json back to GS.
I can't do that, everytime it returns an error and I don't understand why, I'm using reqbin to test it and it just doesn't work.
This is my code:
from flask import Flask, request, jsonify
app = Flask(__name__)
@app.route('/test/', methods=['POST'])
def msg():
return jsonify(request.json)
Eventually I'd need to turn this into a webscraping app with Selenium, I've already written the code and everything works fine locally, but I need this final step to make it work.
Thans