We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c7f6a70 + d11c286 commit c2a63aaCopy full SHA for c2a63aa
CHANGELOG.md
@@ -6,6 +6,7 @@
6
### Fixed
7
8
- Fix CurlCommandFormatter for binary request payloads
9
+- Fix QueryParam authentication to assemble proper URL regardless of PHP `arg_separator.output` directive
10
11
12
## 1.6.0 - 2017-07-05
src/Authentication/QueryParam.php
@@ -41,7 +41,7 @@ public function authenticate(RequestInterface $request)
41
42
$params = array_merge($params, $this->params);
43
44
- $query = http_build_query($params);
+ $query = http_build_query($params, null, '&');
45
46
$uri = $uri->withQuery($query);
47
0 commit comments