Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a PHP script that does an HTTP request on behalf of the browser and the outputs the response to the browser. Problem is when I click the links from the browser on this page it complains about cookie variables. I'm assuming it needs the browsers cookie(s) for the site.

how can I intercept and forward it to the remote site?

share|improve this question

3 Answers

up vote 4 down vote accepted

You can't.

If you curl the request, you will need to parse the output, and replace all links so they go thru your server.

  www.yourdomain.com/f?=www.someotherdomain.com/realpage

The only way this would work is if you use persistent cookies in your curl request. CURL can keep cookies itself. Assign a session ID to the cookie file (in curl) so subsequent requests get the same cookies. When a user clicks a link, you will need to curl the request again.

It is a security issue to allow site1 to set cookies for site2. Imagine if you could set cookies in the browser for paypal and trick the user into thinking they had logged int or some other malicious action.

share|improve this answer
It seems like I should find a more standard solution like auto redirect or something. Thanks – Hannes de Jager Jul 13 '09 at 19:13

From curl_setopt:

By default, libcurl always stores and loads all cookies, independent if they are session cookies or not.

However you may need to set cookies directly, which can be done using:

curl_setopt($ch, CURLOPT_COOKIE, 'foo=bar');

Which is the same as the Set-Cookie HTTP header. Check you're not using curl_setopt($ch, CURLOPT_COOKIESESSION, true) as this will make libcurl ignore some cookies.

share|improve this answer
I have recently discovered that the "By default, libcurl always stores and loads all cookies" comment seems to be false as of PHP 5.3.8. I had to create a cookie jar for curl to traverse more than one redirect and not lose the cookies for the domain. – Joey T Nov 19 '11 at 4:41

The Cookie is usually sent with the HTTP request header like

Host stackoverflow.com
User-Agent ...
Accept-Language en-us,en;q=0.5
Referer http://stackoverflow.com/unanswered
Cookie bla=blabla;blubb=blu

So I guess that just have to modify the cookie part in your header.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.