Brent Shaffer

Results 407 comments of Brent Shaffer

@TomBrouws Hey Tom! We are currently blocked because Java can't upgrade to `v25.7` as it could be a breaking change for them... I wish it wasn't as complicated as it...

I spoke too soon - it's looking promising for us to make this change. I'll keep this bug updated on our progress!

@fiboknacky what is `withResponseMetadata`? I don't want to add it to `CallOptions` because as far as I know, it's not supported as a call option in the GAPIC libraries. Is...

oh! Wow, I just don't remember that at all 😅 Okay SGTM, please let me know if I can help!

@haizadvnet I've posted the issue to the `grpc` repo here: https://github.com/grpc/grpc/issues/39509 I will try to take a closer look. In the meantime, has anyone tried this with the latest gRPC...

Since access tokens expire, the only way to remove them (currently) would be to run a query to clean up expired tokens. In Redis, the removal happens automatically, but for...

Yeah, Redis will automatically remove keys after their expiration, so it's a great application for access tokens, refresh tokens, and authorization codes. You can mix-and-match storage also, and keep MySQL...

`signBlob` is implemented in two different places: 1. In the [`ServiceAccountSignerTrait`](https://github.com/googleapis/google-auth-library-php/blob/main/src/ServiceAccountSignerTrait.php) - the signing key is used to sign the blob directly. No network call is made 2. In the...

Yeah those googleads shopping samples are really outdated (the deps say `php >= 5.4`). They are also using PHP Reflection to modify our private properties, which is cursed and unholy....