Brent Shaffer
Brent Shaffer
Closing in favor of https://github.com/googleapis/google-cloud-php/pull/5822
The reason the first example throws an error is that `WebDataStream` class has been removed (see https://github.com/googleapis/googleapis/commit/a079cb09ba1573ee7422a8b0bbc2197db6a5d69e). This is an alpha API, so you'll want to update to the latest...
We missed `Debugger`: https://github.com/googleapis/google-cloud-php/pull/5711
We are going to wait until after the new year to release this, as our team is currently in a release freeze for the holidays!
I've attempted to fix this issue in the native protobuf library here: https://github.com/protocolbuffers/protobuf/pull/12139
Hi @niklasravnsborg! Congratulations, you are the owner of our longest open issue! I am sorry it's taken so long for someone to take a look at this. Looking at [the...
Okay looking at this more (and thinking about this more), the `Bootstrap` class calls `serviceId` and `versionId`, which do not exist in the Cloud Run environment in the same way...
Looks like we can use the `K_SERVICE` and `K_REVISION` environment variables in the [Cloud Run runtime contract](https://cloud.google.com/run/docs/container-contract) to get this information: ```php $metadataProvider = new SimpleMetadataProvider(serviceId: getenv('K_SERVICE'), versionId: getenv('K_REVISION')); ```...
This library still allows for older versions of `google/auth` which rely on these classes. We could update the minimum required version of `google/auth` to v1.19 and remove these classes.
Your client ID is empty... You must supply a client ID and your storage engine in turn must support that client ID / client secret combination.