Former teacher → self-taught developer → team lead. Now building AI tools in Rust & Python. When not coding: dad, piano, rock climbing, gaming, walking my dog, crafting questionable dad jokes. 🧗♂️
It only seems to have issues when I am doing some sort of authentication process. If i am just calling my API to grab data from my database, or make an outside API call, it works just fine.
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Hi,
did you try using CORS?
something like this:
from flask_cors import CORS
app = Flask(name)
CORS(app)
Hi, yes I am using this.
It only seems to have issues when I am doing some sort of authentication process. If i am just calling my API to grab data from my database, or make an outside API call, it works just fine.