这玩意,我也是老早工单问来的,那时候还是1.0传家宝的时候,出租给别人,我写的监控,当时可以获取到通用流量包的使用情况
- $result = AlibabaCloud::rpc()
- ->product('BssOpenApi')
- // ->scheme('https') // https | http
- ->version('2017-12-14')
- ->action('QueryResourcePackageInstances')
- ->method('POST')
- ->host("business.{$this->region_id}.aliyuncs.com")
- ->options([
- 'query' => [
- 'RegionId' => $this->region_id,
- 'ProductCode' => $this->product_code,
- 'ExpiryTimeStart' => $this->expiry_time_start,
- ],
- ])
- ->request();
复制代码 |