Push notifications allow you to stay in touch with your users and make it possible for your users to communicate with each other. Before you begin, remember that push notifications are not available in the iOS Simulator. You will need an iOS device, as well as an Apple certificate to complete this tutorial. Create your APNS (iOS) credentials Creating your Apple Push Notification Service credentials is actually the longest part of this tutorial. Log in to ...
Last few days our clients had problems with Apps that used GCM credentials to send push notifications to Android devices. This was caused by the fact that Google recently released improved version of GCM API under the Firebase brand - FCM (Firebase Cloud Messaging). Although Google says that they will continue to support the current version of GCM Android and iOS SDKs, they highly recommend everyone to upgrade to FCM in order to benefit from new FCM featur ...
We, SashiDo’s team, like to dream big, because setting up the bar high is the way to achieve awesome results. We wanted to create a service, offering every feature from Parse so you wouldn’t miss anything when coding your favourite apps, to give to you a REAL PARSE ALTERNATIVE. After launching so many of them and putting a lot of effort into improving the service, it was clear: it’s time to expand and cover more hosting location. Since most of you asked fo ...
One of the guideline policy that Parse created was to try to make everything convenient for their users and that was one of the main reasons developers loved the service. SashiDo’s team wants to keep this tradition by providing our customers the same experience of comfort and effortless coding. I’m sure this happened to you: you get an order for an app, but the customer also wants a website with it. So you have to use one provider for the mobile applicati ...
How to set up Twilio for local development In the first part of this tutorial we showed you how to make npm package integrations directly into your Advanced Cloud Code. But let’s say you want to test something on your computer before deploying it on SashiDo’s Cloud Code. This tutorial is for Mac OS X (for other OS should something similar) First you should install nvm (Node Version Manager - Simple bash script to manage multiple active node.js versions). ...
Setup of Twilio package tutorial Building more complex apps without a lot of knowledge about back-ends and infrastructure sounds difficult, but we believe in Parse’s vision for letting developers create any app effortlessly. When we first launched early access for SashiDo, most of our lovely users asked for Advanced Cloud Code and we do understand why - it’s essential feature, because it’s flexible, allows you to write Express applications and use differ ...
Even before our early access, we had the vision to make SashiDo The Real Parse alternative.As we promised you, step by step we include more and more features to our service so you wouldn’t miss anything.And that’s just the beginning of our journey :) We’re very excited to share the latest news - SashiDo now supports: Background Jobs Give you the option to write long running tasks, include them in your Cloud Code and set up how often you want to run them. N ...
SashiDo has been on the market for few months and during this time we had the opportunity to get to know more about our clients and what they need in order to receive fully complete experience with the service. After launching Advanced Cloud Code the top asked question was “Are Background jobs in the roadmap?” So we did it - now you can run scheduled tasks on your app. Why do I need Background Jobs? Because they give you the comfort to write a function onc ...
SashiDo launched Advanced Cloud Code so you can have the ability to write more complex logic, add 3rd party API libraries and packages which provide you a lot of ready-to-use functionality. That’s awesome, but what happens if you want to implement your server-side logic in a language other than Javascript? Or if you want to use in your project a tool, not supported by Cloud Code? Then the perfect solution is to set up WebHooks on your application. They ar ...
Before the concept of Live Queries (WebSockets behind the scenes) was created, developers used comet and long polling in order to simulate real time web. The problem was that this technologies needed almost constant communication with the server, which, as you’d imagine, it’s not very fast and resource-friendly. Then Live Queries came and the Parse Server became realtime. Imagine an app game, which needs to update in real time non-stop. As you know, games ...