code is as follows:
from flask import Flask, Response, request
import json
from flask_cors import CORS
from waitress import serve
app = Flask(__name__)
CORS(app, resources={r"/app/*": {"origins": "http://localhost:3000",
"allow_headers": ["Origin", "Authorization", "X-Frame-Options", "X-Requested-With", "DNT", "User-Agent", "If-Modified-Since", "Cache-Control", "Range", "X-Real-IP", "HOST", "X-NginX-Proxy", "Content-Type", "If-Match"],
"expose_headers": ["ETag", "Content-Length", "Content-Range", "Access-Control-Allow-Origin"],
"max_age": "3600"}})
@app.route('/app/compute', methods=['GET', 'POST', 'PUT'])
def compute():
input = request.json
responsedict = dict()
responsedict['customerid'] = 'customer A'
responsedict['loan_amount'] = 0
return Response(json.dumps(responsedict), status=200, mimetype="application/json")
serve(app, port=5000, host="0.0.0.0")
requirements.txt is as follows:
Flask==2.0.2
Flask-Cors==3.0.10
waitress==2.1.1
I am not getting following headers in response of Options request: Access-Control-Allow-Headers and Access-Control-Max-Age
Any guidance will be appreciated.
According to the extension's code:
So you need to send an OPTIONS request, and have the
Access-Control-Request-Method
header. And for getting theAccess-Control-Allow-Headers
header in response, you need theAccess-Control-Request-Headers
in your request.This request will work:
sample response:
for 2nd header as well:
response:
these requests will not work: