Lev Khoroshansky
Lev Khoroshansky
Also if you're gonna use `sign_blob` note that IAM API has quite strict rate limits: Might be a deal-breaker for someone.
> Related to limit, it is actually a bit better than the figures you posted @TmLev Oh, I definitely overlooked it, thanks!
As for the implementation of signing a PUT URL, I've managed to come up with the following (in case anyone needs help with it): ```rs use chrono::Utc; use itertools::Itertools; use...
@abdolence is there a way to get credentials (in particular, the email of a service account) from `GoogleApi` and/or `GoogleRestApi`?
Hmm, so my main use case is loading a service account stored as JSON from filesystem, then creating all the API clients: ```rs pub async fn build_rest_client( service_account_path: &Path, )...
I see, makes total sense. Thank you for clearing things up on this!
Right now, it feels much simpler and more reliable to do this: ```tsx // app/index.tsx export default function IndexRoute() { const { isInitialized, session } = useAuth(); if (!isInitialized) {...
> We've looked into it with @huozhi, but decided not to support it. Requiring users to import the styles manually is bad DX and there doesn't seem to be a...