Dreamhost
Php
<?
$ch = curl_init();
// set url
curl_setopt($ch, CURLOPT_URL, urldecode($_GET['url']));
//return the transfer as a string
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// $output contains the output string
$buffer = curl_exec($ch);
// close curl resource to free up system resources
curl_close($ch);
//write what we just grabbed
echo $buffer;
?>
From: [email protected]
[mailto:[email protected]] On Behalf Of Jay
Sent: Wednesday, May 11, 2011 2:40 PM
To: [email protected]
Subject: [google-appengine] proxy service
I have an API that I need to access that is a RESTful service. The problem I
have is they are using a lame IP whitelist model for licensing. Obviously
that is not going to work well on app engine.
Has anyone had success with a low cost proxy service that they can
recommend?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.