Results 1797 comments of Sebastian Thiel

Thanks for the hint! That's probably an oversight. Were you able to verify that adding the tokio runtime via derive (for example like `#[tokio::runtime] fn main()…`) works as expected? If...

Thanks a lot, this will help! Regarding authentication, that's probably a bit under-documented in the documentation right now. I would expect that the [yup-oauth2](https://github.com/dermesser/yup-oauth2) docs should more helpful to get...

Thanks for letting me know. As the APIs are autogenerated, most of the information about which scopes to use comes from the API description. I think there are also heuristics...

When running `make help-api` it lists all known APIs. This one isn't mentioned anymore and probably the folder in question is stale and should be deleted. This can happen if...

Thanks for reporting! I think there was a change related to the way certain kinds of data are represented. It should be possible to find this commit and maybe make...

I recommend to use the local source of the crate in question to make it editable, and compare the working version and the non-working one. They will be close enough...

Thanks for reporting. Changing that for all APIs is easy, but I wonder if it would break others or most of them. For those who want to tackle this I...

As a workaround, it's probably easiest to vendor the Google API crate and patch it yourself. I presume without the urlsafe version of the wrapper it should work.

I think cargo features *could* work if the whole crate either wants URL encoding or base64, and I don't know if that's the case consistently. Maybe it would also be...