William Oprandi

Results 32 comments of William Oprandi

It's even worse than use separate pydantic and sqlalchemy models because the nested list on the payload received from client are always empty. So it's not even possible to create...

I think it's a PyCharm issue https://youtrack.jetbrains.com/issue/PY-30187

I have a issue to test when I use `CircularProgressIndicator` as progress widget like this : ```dart CachedNetworkImage( imageUrl: '$baseUrl/pictures/${image}', cacheManager: context.watch(), progressIndicatorBuilder: (context, url, downloadProgress) return Center( child: CircularProgressIndicator(...

@felangel well, what's the problem with the code I posted ?

OK you can clone here https://github.com/woprandi/flutter_playground You will need a websocket server to simulate (re)connections. You can use the `test.py` file (`pip install websockets` also). As you can see, the...

@felangel Were you able to take a look ?

@felangel No problem I didn't remember about this issue. I don't know if it's still relevant. I'd need to take 5 min to retry

You're right it misses at least documentation to how protect resources with fastapi.

You will need at least the userinfo & logout endpoint. ```json { "userinfo_endpoint": "http:///userinfo", "end_session_endpoint": "http:///logout", } ```