fastapi icon indicating copy to clipboard operation
fastapi copied to clipboard

FastAPI framework, high performance, easy to learn, fast to code, ready for production

Results 724 fastapi issues
Sort by recently updated
recently updated
newest added

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

issue : https://github.com/tiangolo/fastapi/issues/774

feature
p3

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

**Description** How can I use socket.io instead of the plain websocket integration? I guess this is more a question belonging to starlette. Currently migrating from a flask application using flask-socketio...

good first issue
question
docs
confirmed

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

Hi! **_TL;DR:_** This PR changes exception response status codes in security http schemes from 403_FORBIDDEN to 401_UNAUTHORIZED. **__Long__** HTTPBearer and HTTPDigest security schemes used as a dependency are returning a...

```py from fastapi import FastAPI, Security from fastapi.security import api_key app = FastAPI() api_key_header_a = api_key.APIKeyHeader(name='key_a') api_key_header_b = api_key.APIKeyHeader(name='key_b') @app.get("/a") async def a(auth_token: str = Security(api_key_header_a)): pass @app.get('/b') async def...

bug
p3

### First check * [ ] I added a very descriptive title to this issue. * [ ] I used the GitHub search to find a similar issue and didn't...

enhancement