Tagged Questions
4
votes
3answers
126 views
Send first line of the HTTP Header
A normal HTTP request may look something like this:
GET / HTTP/1.1
Host: example.com
I would like to change the first line of this request, with a custom one, e.g.:
FOOBAR NOT REALLY HTTP
Host: ...
2
votes
1answer
840 views
Install php_http on Arch Linux
First I installed the curl extension for PHP:
$ sudo pacman -S php-curl
and
$ grep curl /etc/php/php.ini
extension=curl.so
Then I installed the PHP PEAR
$ sudo pacman -S php-pear
Having now ...
6
votes
2answers
215 views
Are there any good tools besides SeleniumRC that can fetch webpages including content post-painted by JavaScript?
One major shortcoming of curl is that more and more wepages are having their main piece of content painted by a JavaScript AJAX response that occurs after the initial HTTP response. curl never picks ...