鉴于官方API过度设计,所以这个中间件是GuzzleHttp专用的,支持阿里云大部分API请求。
use GuzzleHttp\Client;use GuzzleHttp\HandlerStack;use aliyun\guzzle\subscriber\Rpc;$stack = HandlerStack::create();//跟guzzlephp普通用法唯一的区别就是这里吧中间件加载进来,他会自动帮你签名重新包装请求参数。$middleware = new Rpc([ 'accessKeyId' => '123456', 'accessSecret' => '654321',]);$stack->push($middleware);//这里设置 网关地址,数组参数请参见 https://docs.guzzlephp.org/en/latest/request-options.html 操作哪个接口对应的 base_uri 就写哪个$client = new Client([ 'base_uri' => 'https://live.aliyuncs.com/', 'handler' => $stack,]);//查询参数 https://help.aliyun.com/document_detail/35412.html 这个页面列出了几个参数就在数组提交几个参数,其他的API接口也一样,只需对应参数给他提交即可。$res = $client->get('/', [ 'query' => [ 'Action' => 'DescribeLiveStreamOnlineUserNum', 'DomainName' => 'live.aaa.tv', 'AppName' => 'live', 'StreamName' => 'bbb', ]]);print_r($res->getBody()->getContents());点击空白处退出提示
评论