Answers for "Access to XMLHttpRequest at 'http://localhost:8080/api/v1/typeInterpelation' from origin 'http://' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource."

1

ccess to XMLHttpRequest at 'http://127.0.0.1:5000/ has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

@app.route('your route', methods=['GET'])
def yourMethod(params):
    response = flask.jsonify({'some': 'data'})
    response.headers.add('Access-Control-Allow-Origin', '*')
    return response
Posted by: Guest on May-12-2020
0

Access to XMLHttpRequest at 'http://localhost:8080/api/v1/typeInterpelation' from origin 'http://' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

sterling
Posted by: Guest on August-01-2021

Code answers related to "Access to XMLHttpRequest at 'http://localhost:8080/api/v1/typeInterpelation' from origin 'http://' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource."

Browse Popular Code Answers by Language