应用场景 php的组件有些时候 需要同时支持 guzzlehttp5.3 and guzzlehttp6.7
you call install guzzlehttp5.3 and guzzlehttp6.7 ,
like this
vendor/guzzlehttp53
vendor/guzzlehttp
第二步 2.
fillup/walmart-partner-api-sdk-php
replace
use GuzzleHttp\ - > use GuzzleHttp53\
GuzzleHttp\\ -> GuzzleHttp53\\
第三部 2.
composer\autoload_psr4
add GuzzleHttp53
autoload_psr4
'GuzzleHttp53\\Subscriber\\Retry\\' => array($vendorDir . '/guzzlehttp53/retry-subscriber/src'),
'GuzzleHttp53\\Stream\\' => array($vendorDir . '/guzzlehttp53/streams/src'),
'GuzzleHttp53\\Ring\\' => array($vendorDir . '/guzzlehttp53/ringphp/src'),
'GuzzleHttp53\\Command\\Guzzle\\' => array($vendorDir . '/fillup/guzzle-services/src'),
'GuzzleHttp53\\Command\\' => array($vendorDir . '/guzzlehttp53/command/src'),
'GuzzleHttp53\\' => array($vendorDir . '/guzzlehttp53/guzzle/src'),
autoload_static
.......................
guzzle 增加header
- $client = new Client([
- //域名或者访问的api接口地址
- 'base_uri' => 'http://localhost/test',
- // 超时,可设置可不设置
- 'timeout' => 2.0,
- ]);
- // $api可以为空,一般为api接口后缀,也可以直接写到上面的base_uri里面,
- $response = $client->request('POST/GET', '$api', [
- 'headers' => [
- 'name' => 'info'
- ],
- 'query' => [
- 'username' => 'webben',
- 'password' => '123456',
- ]
- ]);
-
-
-
-
- $postData = [
- 'platform_no'=> $rms_platform_no,
- 'uuid' => $uuid,
- "data_info" => $param
- ];
- //方法1
-
- $rs = $this->http($url , 'POST' , ['headers'=>$headers,'body'=>json_encode($postData)]);
-
-
- //方法2
- $rs = $this->http($url , 'POST' , ['headers'=>$headers,'json'=>$postData]);
-
也可以用
oauth-subscriber:使用OAuth 1.0(Guzzle 6+)签署Guzzle请求
Guzzle OAuth 2.0订阅者 使用Guzzle 4、5、6、7和PHP 5.4、5.5、5.6、7.0、7.1、7.2、7.3和7.4进行了测试。 这是Guzzle的OAuth 2.0客户端,旨在与Guzzle 4、5、6、7和单个软件包中的所有将来版本100%兼容。 尽管我喜欢Guzzle,但它的接口不断变化,每12个月左右会引起重大的更改,因此,我创建了此程序包来帮助减少大多数第三方Guzzle依赖项带来的依赖地狱。 我写了官方的Guzzle OAuth 2.0插件,该插件仍在oauth2分支上,,但是我看到他们已经放弃了对master上的Guzzle ======================== getEmitter方法添加头信息 中间件