Questions tagged [backendless]

Backendless provides an instant backend to help developers build better apps faster.

The Backendless Platform is a tightly integrated system designed to streamline and accelerate application development process. Individual platform products can address requirements of developers working on mobile, web-based or enterprise applications. However the platform as a whole establishes a unified approach for building applications faster, at a reduced development cost and with the utmost reliability.

Backendless.com

255 questions
2
votes
0 answers

Backendless: updating current user from inside handleResponse

@Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == SELECT_PICTURE) { if (resultCode == RESULT_OK) { Bitmap…
Ilonpilaaja
  • 1,169
  • 2
  • 15
  • 26
2
votes
1 answer

Backendless - Save object as parent class

Having the following structure (in an Android Java project): public abstract class A { ... } public class B extends A { ... } public class C extends A { ... } At some point it is needed to store a list of parent class types cause we are…
Alejandro Morán
  • 669
  • 1
  • 13
  • 36
2
votes
0 answers

How to use the backendless data retrieval API in swift?

I'm new to Swift and am making my first Backendless database query using their api. I followed this tutorial. Here's the code: func fetchingFirstPageAsync() { let startTime = NSDate() let query = BackendlessDataQuery() …
Stiño
  • 2,663
  • 7
  • 25
  • 47
2
votes
2 answers

Backendless service beyond bounds for empty NSArray

this is my code BackendlessDataQuery *query = [BackendlessDataQuery query]; query.whereClause = [NSString stringWithFormat:@"UniversityName LIKE \'%%%@%%\' ", partialName]; [[backendless.persistenceService of:[University class]] find:query…
magorik
  • 47
  • 4
2
votes
0 answers

Create Backendless user after successful Google login

I'm starting to use Backendless.com mBaaS on Android I sign in user via Google and I got token and everything is OK, but the logged in user isn't created an Users table, so I can not use it to store user specific data. So I tried to combine user…
2
votes
1 answer

Using Backendless API with Qt for Android

I'm writing an application on Qt Android (C++) , and would like to manage some data and users on Backendless server. How can i use their APIs? Is the REST the only way in this case?
Alex
  • 63
  • 1
  • 7
2
votes
2 answers

Backendless API - Create user

I'm trying to use Backendless API on a C# .net 4.5 application, but there is no way to make it work, since I get "An unhandled exception of type 'System.StackOverflowException' occurred in weborb.dll." Code is simple, but doesn't work. The Java…
user5630103
1
vote
2 answers

Backendless fetch all data from database but returning one result

I set up a database in Backendless and started running it on Android Studio. The app is able to access the database and the connection is stable. But when I run the app, it only returns one result from the database. Is it possible to loop through…
David A
  • 11
  • 1
  • 2
1
vote
0 answers

Flutter Web - Backendless - How to Send Mail

I am developing a website with flutter web. on this web site there is a page to directly send an email from the site. To do this I thought about using Backendless: https://backendless.com/docs/flutter/email_settings.html But when I send a simple…
1
vote
1 answer

Backendless + Zapier. Create record with foreign relationship

I'm new to the world of Low Code app development, and so far I'm pulling my hair out. I'm using a third party web app to submit JSON formatted data to Zapier via webhook, and then submit that to Backendless with codeless API that creates a record.…
Chris May
  • 582
  • 1
  • 4
  • 10
1
vote
0 answers

Angular 10 - html template not showing correct info depending on variables

I am practically new to Angular (Angular 10 used) and maybe it's a pretty easy thing but I can't figure it out. In the info component I am getting the current user details and the current book details from the tables on the server and depending on 3…
a.m
  • 169
  • 3
  • 11
1
vote
3 answers

Flutter How to import backendless_sdk messaging module?

I am following this article How to Create a Chat App with Backendless SDK for Flutter import 'package:flutter/material.dart'; import 'package:backendless_sdk/backendless_sdk.dart'; import 'package:backendless_sdk/src/modules/modules.dart'; There…
dak
  • 339
  • 6
  • 21
1
vote
0 answers

NativeScript & SocketIO: Can't find variable: SocketManager

I'm trying to integrate Backendless JS-SDK into the NativeScript application. The JS-SDK is dependent on socket.io.client module which is not supported in the NS environment. So, the first problem with the socket.io.client module I've solved by…
1
vote
2 answers

Flutter-Backendless User Login __ How to Validate User Credentials (Email and Password) to move from Login Page to Home Page

Newbie mobile developer here. I'm trying to implement User Logins with Backendless but I don't know whats the best way to do it, especially to avoid making too many API calls. I know there are several malpractices (especially UX) here but I'm really…
David
  • 13
  • 5
1
vote
2 answers

Indirectly exported class not visible

I'm having trouble using the Backendless plugin for Flutter. I include import 'package:backendless_sdk/backendless_sdk.dart'; (as per the instructions) and can then use e.g. Backendless.UserService. But if I try to generate a user to register,…
joriki
  • 617
  • 5
  • 14
1
2
3
16 17