News Feed
Jobs Feed
Sections




News Archive
Gonzalo Ayuso:
Building a simple API proxy server with PHP
August 14, 2012 @ 11:07:56

In some of his work with Backbone.js recently, Gonzalo Ayuso has been frustrated by something that's a wall for many developers wanting to work with outside datasources - the browser restriction that prevents cross-domain requests. His solution? Create a REST proxy to live on his server and pass the requests through.

Nowadays there is a header to allow it: Access-Control-Allow-Origin. The problem is that the remote server must set up this header. For example I was playing with github's API and github doesn't have this header. If the server is my server, is pretty straightforward to put this header but obviously I'm not the sysadmin of github, so I cannot do it. What the solution? One possible solution is, for example, create a proxy server at localhost with PHP.

He shares the full code for his project - basically a handler that takes the incoming request and mirrors to out to the public, remote API - request method and all. It uses some of the packages from Symfony (like the http-foundation) and wraps around cURL to handle the requests. The project is available for Composer users as well.

0 comments voice your opinion now!
api proxy server tutorial rest curl wrapper


blog comments powered by Disqus

Similar Posts

Vinu Thomas' Blog: Create a Storage engine for MySQL using PHP

DevShed: Using PDO Objects in PHP 5 - Using the PDO extension

DevShed: Working with MySQL Result Sets and the Decorator Pattern in PHP

php|architect Blog: WordPress 404 Plugin built on Bing Wrapper

Stefan Mischook's Blog: Cannot load mysql extension error - Video Tutorial How To


Community Events









Don't see your event here?
Let us know!


code event release development conference api tool opinion testing functional composer introduction example community interview object framework podcast zendframework2 language

All content copyright, 2013 PHPDeveloper.org :: info@phpdeveloper.org - Powered by the Solar PHP Framework