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

DevShed: Working with Directory Iterators and Proxy Classes with PHP 5

Stefan Mischook's Blog: Object Oriented PHP Tutorial Released

Vanessa Vasile's Blog: Simple Way to Parse an x509 Certificate with PHP

Sander van de Graaf's Blog: Optimizing your (ZF) web application

Ivan Iordanov's Blog: extending Zend_Db_Table to create NestedSet models


Community Events









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


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

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