Created
August 29, 2017 09:21
-
-
Save achmadfatoni/8c67cc430f4de18926c42abf24aedbc1 to your computer and use it in GitHub Desktop.
Guzzle Raw POST request
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$client = new Client(); | |
$array = []; | |
$res = $client->request('POST', $url, [ | |
'body' => json_encode($array), | |
'headers' => [ | |
'Content-Type' => 'application/json', | |
] | |
]); |
Found it after 3 days of swearing (and sweating). Thank you!
thanks help alot
Thanks @achmadfatoni, It works for me.
Thanks work for me.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it work for me , thank you