I need to build a proxy for a Flash Player project I'm working on. I simply need to make a HTTP GET request with HTTP-Basic authentication to another URL, and serve the response from PHP as if the PHP file was the original source. How can I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Using |
|||||||||||
|
|
If you have the cURL client library baked into your PHP build then you can use the accepted answer for this question without installing anything else. And Yahoo has published a tutorial on using PHP to access their RESTful APIs, and although it doesn't deal specifically with Basic Authentication it does deal with the fundamentals of using PHP with cURL, so you may find it useful. |
|||
|
|
|
You really want to use php for that ? a simple javascript script does it:
|
||||
|
curlif it's pretty readily available. I'd like my script to "just work" as much as possible on as many machines as possible. – TK Kocheran Oct 11 '11 at 21:46