Questions tagged [backand]

Backand is a backend-as-a-service for AngularJS that provides social login, push notifications, and Ionic integration.

Backand is a Backend-as-a-Service provider focused on AngularJS Applications built on top of relational databases. Backand provides all of the features necessary for a fully functional, secure, and scalable web app, including user and role-based security, automated RESTful-based APIs, custom action triggers, portable Amazon RDS database instances, social media integration, and extensive support for server-side JavaScript code..

Details:

Backand is a Backend-as-a-Service for AngularJS applications. Starting from either an existing database or a schema specification, Backand quickly generates a RESTful API that can be hit from any application using JSON web requests. Backand also provides a library for AngularJS, allowing you to quickly tie Backand's RESTful API to your application's data services, giving you instant database backing. In addition to object management, Backand provides you with a number of features crucial to web-based applications. These includes:

  • User and Role-based Security
  • Dedicated Hosting
  • Custom server-side actions
  • Transaction-level database-triggered actions
  • Integration with Ionic for cross-platform apps
  • Server-side JavaScript execution, allowing for safe and secure third-party integration
  • A portable database, allowing you to quickly change providers
  • Real-time database communication, and web sockets
  • Scalability, both in terms of performance and data management.

To get started, sign up at Backand.com and register your application! The application dashboard contains extensive documentation on every feature available to your app. Backand also maintains an active GitHub page at https://www.github.com/backand, where you can find several tutorials and examples of how to leverage Backand as a tool to accelerate your app's development.

Links:

143 questions
0
votes
1 answer

How to setup Backand SDK in an Ionic2 app?

I'd like to setup my Ionic2 app to use the Backand SDK. I am new to Ionic2 / Angular2 and I couldn't find any example out there with an Ionic2 app. I could only find example apps with Ionic1 / Angular1 apps which don't help me. Any clues? Thanks,…
0
votes
1 answer

Backand: 'userId' is null after SignUp API call

I am trying to register a new user (Sign Up) with this service module: (function () { angular.module('starter') .service('ProfileModel', function ($http, Backand) { var service = this, baseUrl = '/1/objects/', …
Colin Wang
  • 6,778
  • 5
  • 26
  • 42
0
votes
1 answer

Backand: Sign user in immediately after registering?

Having trouble doing this - is it even possible? Sign-up Email Verification is off, and I'm doing this in the config: BackandProvider.setAppName( 'test' ); BackandProvider.runSigninAfterSignup( true ); // ... tokens, etc. Getting this back in the…
montrealist
  • 5,593
  • 12
  • 46
  • 68
0
votes
1 answer

How do I delete multiple rows from a table on Backand?

Back& API allows to remove only with an ID. How do I delete multiple rows from a table on Backand by the values of other columns? I need to remove by other fields of the table, not by ID
0
votes
1 answer

Extend Facebook scope on Backand

I want to retrieve and save more information about the Facebook user, like facebook id, username and other information. Is there a way to extend the Backand.socialSignup()?
0
votes
1 answer

Backand - How can I console.log() things from inside Security Actions?

In Backand, underneath Security & Auth > Security Actions, is there any way I can use console.log() to log something when those functions get run on the server side? I know the Read.me says you can use: 'console.log(object) and…
cs_pupil
  • 2,782
  • 27
  • 39
0
votes
1 answer

I need link to backand SDK for android

I have created android app and I am using backand.com so I have been looking for backand sdk for android. If anyone have any idea about it than please help.
0
votes
1 answer

How to implement the Master Detail Pattern in Ionic with Backand?

I'm using Backand for data storage but I can't get the details of the items in the list to show up. It navigates to the detail page but just doesn't show any of the data. I know how to implement a master detail pattern when using local storage but I…
user2133623
0
votes
1 answer

Backand ios SDK

I am using backand ios SDK for managing backend services to my ios app.step 1 is to add this Parse.setBackandAppName(appName: String, andSignupToken: String) I want to know from where do i get this signUpToken. Actually I was taking the signUpToken…
Anirudha Mahale
  • 2,526
  • 3
  • 37
  • 57
0
votes
0 answers

Ionic Framework with Backand doesn't work on device as on Ripple (emulator)

So, I'm trying to learn Ionic Framework, but, I've got a problem already, I'm running the Ionic Backand Starter app (like an example app) and I've got two different results when testing it. Ripple: When I run it from VS on Ripple, it works perfectly…
Victor Maricato
  • 672
  • 8
  • 25
0
votes
1 answer

Backand: Cyrillic strings turn to?

After sending POST or PUT request got rows added but Cyrillic strings turned to ?????. Also when trying to enter and save cyrilic strings through backand dashboard the same thing happens.
Vdomah
  • 46
  • 1
  • 4
0
votes
0 answers

Adds an empty value

For some reason my back end adds an empty value when I press the button Add. I don't know the reason... I tried to debug it by console.log() in its callback it gives me the actual string I inputed....? What is wrong? Basically if you are still…
amanuel2
  • 4,508
  • 4
  • 36
  • 67
0
votes
1 answer

PUT update Backand object field float bigger than 1000000 sets object field value to 1000000

When PUT change a record of type float, with a value over 1000000 the value gets changed to 1000000.
0
votes
1 answer

How to save Object's parameters from backend into new variables?

I am trying to save the attributes of my objects (events) from the backend into new variables for a calendar. Here's my code: EDIT: function getEvents(object){ TimeSlotsModel.all() .then(function (result) { …
cornstar94
  • 57
  • 2
  • 11
0
votes
1 answer

Problems with data service and ionic

I'm creating a new Ionic app using Backand to host the data. I want to present a list of all the instruments I have in a database. Here's my presentation code: