Tomas Votava

Results 27 comments of Tomas Votava

It actually doesn't matter if you send the refresh token or not, plainly calling `await session.post("https://www.linkedin.com/oauth/v2/accessToken")` and checking that there actually was a response should be enough. You'll probably get...

Ouch, that's hard to debug, you could probably try setting up logging to `DEBUG` level, maybe `httpx` will tell you more that way. Also, try using `requests` module instead, I...

Hi @leshravnya, thanks for bringing this up. Fastapi-sso currently does not handle any `X-Forwarded*` headers, but `startlette` (and `fastapi`) should. Are you using `request.url_for` to get your redirect uri? Could...

Hi @adityabhattad2021, this seems weird, because httpx is used to communicate with the oauth provider (Google in your case), I am not sure this is an issue with the proxy....

Hi all, I've been dealing with the same lately. The thing I've ended up doing is I simply silenced the `RuntimeError` raised in the finalizer and called the cleanup finalizer's...

We've been trying to use `adlfs` asynchronously (using underscore-prefixed coroutines) and as I've said previously, apart from the annoying `RuntimeErrors` raised in the weakref finalizers, everything goes well. But currently,...

This is really weird, it seems more like a network trouble, are you sure the requests can go through and are not blocked on egress?

@K1T3K1 hey, are you running your app using `uvicorn`? If yes, can you confirm that you are using `--root-path` as [specified in the docs](https://www.uvicorn.org/settings/#http)? Also, although hard-coded and mostly not...

Also, always make sure that your proxies (nginx, traeffik, etc.) know that they should set `Host` headers correctly. E.g. for [nginx](https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/#passing-request-headers).