I'm developing a web app with Flask & React and despite using Flask-CORS with
all the defaults unchanged (allowing for all headers and origins) requests made
from React gets rejected with Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at http://localhost:5000/auth/check_passport. (Reason: CORS request did not succeed).
Flask:
from flask_cors import CORS
def create_app(script_info=None):
app = Flask(__name__)
app.config.from_object(current_config)
from project.api.auth import auth_blueprint
app.register_blueprint(auth_blueprint)
CORS(app)
return app
In terminal I can see it makes it to Flask though: 127.0.0.1 - - [20/Apr/2021 10:36:59] "POST /auth/check_passport HTTP/1.1" 200
According to docs leaving CORS in its defaults allows for any client to reach the endpoint.
Any feedback is much appreciated.
edit:
auth.py:
from flask import Blueprint, request
auth_blueprint = Blueprint('auth', __name__, url_prefix='/auth')
@auth_blueprint.route('/check_passport', methods=['POST'])
def check_passport():
print('called') # isn't being printed out
image_received = request.data['image']
...
...
front-end:
const checkPassport = () => {
if (passportFile) {
const fd = new FormData();
fd.append("image", passportFile, passportFile.name);
const url = "http://localhost:5000/auth/check_passport";
const config = {
headers: {
"Content-Type": "multipart/form-data"
}
};
axios
.post(url, fd, config)
.then(resp => {
console.log(resp.data.message);
console.log(resp.data.content);
})
.catch(e => {
console.log(e);
});
}
};
At first I thought it might have something to do with you using blueprints, but no, I can't reproduce the problem. Here's my setup:
I test it with this simple page making a request to the endpoint: (just drag it into a browser window and watch the console)
I can see it working fine with
CORS(app)
but then without it doesn't.