Ben Timby
Ben Timby
Here is a breaking change that makes the API explicit. Caller can call `refresh_token()` and pass their arguments explicitly (as always). Caller also explicitly controls same arguments when `refresh_token()` is...
I understand. This is why I propose just letting the caller decide. Although my experience so far is only with a handful of providers, my code to deal with them...
And by the way, I agree, I wish the spec were more explicit.
PR opened: https://github.com/requests/requests-oauthlib/pull/265
I ran into this situation. The refresh is attempted, and the provider replied with an error stating that the refresh token had expired. oauthlib pulled the error description out of...
Could this issue be addressed by changes proposed here? https://github.com/requests/requests-oauthlib/issues/264
My proposal is to accept `client_secret` in `__init__()` for use in `refresh_token()`. `client_id` is already passed and accessible. https://github.com/requests/requests-oauthlib/issues/264
Like #31, my case is that I don't want an ElasticSearch problem to affect database transactions. I don't want an exception in the signal handler to report an error or...
Makes sense, thanks for the reply. I would be happy to look into providing a patch but I must say that I am fairly new to lua. I do have...
So essentially: - Conditional compile (`ifdef`) to enable support when compiling for lua < 5.3. - Register a new userdata with lua runtime: https://www.lua.org/pil/28.1.html - Provide helper like `checkint()`, maybe...