Git Product home page Git Product logo

Comments (7)

crookedstorm avatar crookedstorm commented on July 17, 2024

Note: I am using version 2.1.2. I've been reading other bug reports and don't see anything quite like this, so I'm baffled as to what is happening. Especially that weird 'file://' value.

from flask-cors.

crookedstorm avatar crookedstorm commented on July 17, 2024

Further information: I'm importing like this.

from flask import Blueprint, g
from marshmallow import ValidationError
from ..errors import bad_request, not_found
from flask.ext.cors import CORS
import logging
from ..decorators import rate_limit

api = Blueprint('api', __name__)
CORS(api)
logging.getLogger('flask_cors').level = logging.DEBUG

@api.errorhandler(ValidationError)
def validation_error(e):
    return bad_request(e.args[0])

@api.errorhandler(400)
def bad_request_error(e):
    return bad_request('invalid request')

@api.errorhandler(404)
def not_found_error(e):
    return not_found('item not found')

@api.after_request
def after_request(response):
    if hasattr(g, 'headers'):
        response.headers.extend(g.headers)
    return response

from . import endpoints, moreendpoints

from flask-cors.

corydolphin avatar corydolphin commented on July 17, 2024

Thanks so much for the detailed report. I really appreciate it!

Can you show me an example CURL request and response? Please ensure the Origin header is set.

Also, if you are able to increase logging verbosity to show debug messages that would be very helpful in debugging what Flask-CORS is doing in this case. There is an example of how to do this here: https://github.com/corydolphin/flask-cors/blob/master/examples/app_based_example.py#L24

Thanks again for the detailed report!

from flask-cors.

crookedstorm avatar crookedstorm commented on July 17, 2024

Sorry for not getting back. I'll try that, ensuring the Origin is set soon.

from flask-cors.

crookedstorm avatar crookedstorm commented on July 17, 2024

So! I got this on a first run without modification:
INFO:api.cors:The request's Access-Control-Request-Method header does not match allowed methods. CORS headers will not be applied.
Then it applied this header:
Access-Control-Allow-Origin โ†’file://

from flask-cors.

corydolphin avatar corydolphin commented on July 17, 2024

Thanks for posting back and working with me Brooke! Really appreciate it.

Can you post the curl you made along with as much logging context around
that message as possible?

On Tue, Mar 29, 2016 at 1:08 PM Brooke Storm [email protected]
wrote:

So! I got this on a first run without modification:
INFO:api.cors:The request's Access-Control-Request-Method header does not
match allowed methods. CORS headers will not be applied.
Then it applied this header:
Access-Control-Allow-Origin โ†’file://

โ€”
You are receiving this because you commented.

Reply to this email directly or view it on GitHub
#146 (comment)

from flask-cors.

corydolphin avatar corydolphin commented on July 17, 2024

Hey @crookedstorm I'm going to close this issue for now, let me know if you have more information to help me debug this.

from flask-cors.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.