kitetail / zttp

A developer-experience focused HTTP client, optimized for most common use cases.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to post a JSON type parameter?

endingman opened this issue · comments

commented

Sample:
$response = Zttp::asFormParams()->post($url, [
'foo' => 'bar',
'baz' => 'qux',
]);

'[ 'foo' => 'bar', 'baz' => 'qux',]' is a array? How to post '{ 'foo' : 'bar', 'baz' : 'qux'}'?