我目前正在使用Google_Service_AnalyticsReporting_GetReportsRequest
类使用batchGet
方法来一次获取多个请求。该端点最多可以有5个请求,我希望一次可以处理更多请求。
我发现了这个https://developers.google.com/api-client-library/php/guide/batch,其限制为100,但似乎是一个通用类,需要一个Psr\Http\Message\RequestInterface
作为参数。
就我而言,我有Google_Service_AnalyticsReporting_ReportRequest
。有没有一种方法可以使用Google_Http_Batch来批量处理5个以上的ReportRequests,或者甚至更简单地使用batchGet来批量处理?
谢谢!