This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Tag: RESTful API
-
Scaling your RESTful API in CodeIgniter 3.X
I recently wrote about How To Work With RESTful Services In CodeIgniter 3.X – today’s topic is how you extend the CodeIgniter REST server to give your APIs better availability and reliability.
-
WordPress.com new Calypso desktop app
WordPress is starting to modernize by using JavaScript more and more. You may have seen the release of Calypso, a javascript-based app powering WordPress.com
-
How to work with RESTful Services in CodeIgniter 3.x
With the new release of CodeIgniter 3.0, one of the powerful add-on features to Codeigniter is the RESTful API server and client libraries. I will explain in this article how I use the Yggdrasil Codeigniter 3.x repo to create a RESTful API for your web applications, and demonstrate how to interact with your own API or other […]
-
Basic Python RESTful Server bridging PHP with Python
I run into an issue recently, I got a use case to connect to the Luminoso service using their API, Luminoso has an Authentication library in Python, my backend server is written in PHP.
-
How to run PHP with Python using a RESTful API
During development, I set up a virtual environment, here is how I did that. virtualenv If you are on Mac OS X or Linux, chances are that one of the following two commands will work for you: $ sudo easy_install virtualenvor even better: $ sudo pip install virtualenv