Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python handling a post request

# first do: pip install flask

from flask import Flask, request

app = Flask(__name__)

@app.route('/', methods=['POST'])
def result():
    print(request.data)  # raw data
    print(request.json)  # json (if content-type of application/json is sent with the request)
    print(request.get_json(force=True))  # json (if content-type of application/json is not sent)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #handling #post #request
ADD COMMENT
Topic
Name
3+4 =