Here is the cURL config to request just the response headers with the cURL library
Continue reading “How to request just the response headers with cURL”
Tag: cURL
Post XML with HTTPS Authentication using PHP and cURL
Recently I needed to post XML to a particular API and this API required HTTPS authentication. So I needed to send a username / password with the request.
This was pretty straightforward in C#.NET ( at least from my foggy memory ). You needed to use NetworkCredentials. But it was a bit difficult to find a similar way of doing this in PHP… but eventually I found this gem.
This uses cURL which is just a library to send and receive data from remote sites. Now all I needed was a neat way of using cURL to post XML… and I found a neat implementation here.
Two plus two and you get …
Continue reading “Post XML with HTTPS Authentication using PHP and cURL”