This is Part 2 of a series of articles where we build a mobile app without any coding. The app we are working on is a ToDo app. In the previous post, we did the following: Set up a Backendless (backend) account. Set up a Dropsource (frontend) account. Implemented (without any coding of course) an application…
If you’ve used the Data Retrieval API in Backendless Cloud, you may know that the server limits the number of objects retrieved from a table to 100 in a single call. For Managed Backendless and for Backendless Pro, this limit is configurable. In order to retrieve more than 100 objects, data paging is required. Paging greatly…
Development of mobile applications generally requires two parts: the Backend and the Frontend. Of course, you could limit it only to the client-side, but if there is some data that need to be stored on the server, there is no way to get around having a backend. In this series of articles, you will create…
We did it! There is a new SDK in the Backendless family of libraries, please welcome the SDK for Amazon Alexa! Let’s get a few basic questions out of the way first: Q: Can I build a custom Amazon Alexa skill without Amazon Lambda? A: Yes, you can! Your custom skill implementation can now run in Backendless. Q:…
Suppose your app logs in a user. As a result, the app gets a user-token which uniquely identifies the user’s session with Backendless. If your app uses our SDK for Android, iOS, JS or .NET, the user-token value is managed directly by our libraries. Specifically, it is added to every API call to maintain the session…
In this article, we’ll talk about Backendless publish-subscribe messaging. One of the more common questions we receive is, “How can I get messages long after they are published?” The default mechanism in Backendless keeps messages in the published channel for a short period of time only (around a minute). This becomes a problem if a…
If you have any smart IoT devices in your home or office and tried controlling them with Alexa, you might wonder how it actually works. In this guide, you will learn about building a custom Alexa skill that will let you control a wi-fi enabled light bulb with Alexa. You will be able to turn…
This is Part 2 of the article about developing an Amazon Alexa skill without any coding. In Part 1, you learned the following: How to create a Codeless API Service responsible for handling Amazon Alexa requests. The service completely removes the need for adding AWS Lambda functions and runs without any cost in the free plan of…
Codeless Programming is a general approach for creating programs without writing any code. When combined with the power of the Backendess mBaaS, Codeless becomes a powerful and super-efficient tool. In this post, we will describe how to use Codeless to create a custom Amazon Alexa skill. In this first part, you will develop a basic Alexa…