Home > Software design >  curl php post request
curl php post request

Time:11-29

I have this code

POST /account/p_api/v1/account/authorization/assign HTTP/1.1
Host: exemple.com
Cookie: exemle-locale=en; 
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0
Accept: */*
Accept-Language: en-US,en;q=0.5
Accept-Encoding: gzip, deflate
Content-Type: application/json
Content-Length: 17
Origin: https://exemple.com
Sec-Fetch-Dest: empty
Sec-Fetch-Mode: cors
Sec-Fetch-Site: same-origin
Te: trailers
Connection: close

{"code":"herecode"}

I want to use curl and php to be able to send the request and add another code to "herecode"

I don't know how to do this

CodePudding user response:

In your Browser open the developer tools
Go to the url in your Browser.
Go to the "Network Tab"
Right click the first request in the Network Tab
Select copy => curl

Go to enter image description here

Chrome curl copy example:

enter image description here

Paste to urlconverter: This is a curl copy and paste for this page. enter image description here

  • Related