I am very happy to report that we released a new version of Backendless. The new release is tagged as version 1.9.0, which is a new numbering scheme for us – we used to label releases with names attached to various events. The new release is packed with features, improvements and bug fixes. I’d like…
As we are progressing with the feature a day blog series, I thought it would be a good idea to come up with a fictional app which I could use in the feature posts. The idea for the app I will use as an example is a restaurant ordering system. Using the app a customer…
I am very excited to report that we have an amazing new release with some very cool functionality ready for you. Among the new features you will find support for video streaming and broadcasting for Android, support for Atomic Counters and Caching API. Additionally, we have revised our pricing to give you more choices and more…
In addition to the built-in events triggered by the API calls, Backendless supports custom, developer-defined events. Custom business logic code, which is executed on the server-side, can be attached to either built-in events or the developer-defined ones. Custom events can be triggered through a specialized API call from a client library or by other custom…
There are a lot of scenarios when custom business logic on the server-side may need to connect to an external host. Whether it is a service call to a third-party service or a retrieving data from a proprietary system, the code must establish a connection to an external host. Up until now if you tried…
Back for round #2, eh? (if you missed the first post which was about registering users, read it here) Well, let’s dive in. This one should be pretty quick. The following code is pretty well commented, ping me if you have any questions. json = require (“json”) — Create a table to hold our headers…
This post will go over the basics of integrating Backendless services into the Corona framework… First, create your Backendless account and obtain the “application-id” and “secret key”. Keep those handy, you’ll be using them throughout these tutorials. At present, there is not a proper, Corona-specific API plugin so we’ll be using the REST API for…
Scheduled tasks or background jobs is a common requirement for a lot of applications. Backendless supports this concept through a feature we call Timers. A timer is a form of custom server-side code which runs on a pre-defined schedule. This video demonstrates the process of developing a timer, testing it in the debug mode and…
As an mBaaS platform we frequently say “no server-side coding is required”. This is true for a lot of apps, however, at times it is necessary to shift some application logic to the server-side. The logic may need to alter or extend the default implementation of the core services. Adding custom business logic is not…