Ben Timby
Ben Timby
@joshbwlng If you Click DataTables' handle and then Repositories, you can search for `socket.io` and find their fork of `socket.io-prometheus-metrics`. In that repo is a `v2` branch and the latest...
A bit late, but I did a similar thing by implementing my own FileSystem class. This way you can look up the user's home directory and do all operations relative...
@trmaphi I built a cache of user information attached to the filesystem, keyed by the basic auth header.
My proposal is to add a `refresh_kwargs` param to `request()` for this purpose. https://github.com/requests/requests-oauthlib/issues/264
I am having similar issues. https://github.com/requests/requests-oauthlib/issues/264
I missed #218 yes, the three providers I reference do auth via body not basic auth. New propsed change is to add `refresh_kwargs` to `__init__()`. If `refresh_kwargs` is present, basic...
There is actually already `auto_refresh_kwargs` accepted by `__init__()`. But auth is generated anyway.
Not tested (yet): https://github.com/btimby/requests-oauthlib/commit/cf3ff0a570c19768dc66de1a19f80e24976abce2 Will make PR after I test.
And actually, in reference to Issue 1 above, there is still a problem with the `auth` kwarg. If I pass it to customize my authentication for token refresh and the...
The spec leaves authentication method up to the implementer. ``` 6. Refreshing an Access Token If the authorization server issued a refresh token to the client, the client makes a...