I need to log into another website from my website then embed the logged in website onto my website. I think I am 90% there but can't figure out the embedding part.
When I dump $result = curl_exec ($ch), I know I am logged in (the html tells me so). However, when I try to embedded the logged in website into mine immediately after, I get a Unauthorized access. Any thoughts? I tried iframe and object embed and both give me the same results. Do I have to do something with the cookiejar.txt file? Here's what my code looks like:
Please help.
$cookie_file_path = "/var/www/html/images/cookies/cookiejar.txt";
if (!is_writable($cookie_file_path)){echo "OMG my cookie file wont let me write to it!";}
$fp = fopen("$cookie_file_path","w") or die("<BR><B>Unable to open cookie file $mycookiefile for write!<BR>");
fclose($fp);
$LOGINURL = $url;
$postfields = 'username=test&password=test';
$agent = "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; .NET CLR 1.1.4322)";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$LOGINURL);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,$postfields);
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file_path);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file_path);
$result = curl_exec ($ch);
curl_close($ch);
dump($result);
echo "<object data='http://www.test.com/youareloggedin'>";
echo "<embed src='http://www.test.com/youareloggedin'>";
echo "</embed> Error: Embedded data could not be displayed. </object>";
Please help, I'm stuck!