I saw that a webpage was able to get the text off http://assetgame.roblox.com/game/GetAuthTicket
I am trying to do the same but it isn't working out. Any fixes?
<!DOCTYPE html>
<html>
<head>
<title>Nothing</title>
</head>
<body>
<p>Sorry, this webpage isn't completed yet.</p>
<?php
$domain = 'http://assetgame.roblox.com/game/GetAuthTicket';
$handle = fopen($domain, 'r');
$content = stream_get_contents($handle);
fclose($handle);
echo "<textarea rows='20' cols='80'>$content</textarea>";
?>
</body>
</html>