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

247 questions
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
  • 659
  • 1
  • 13
  • 34
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
  • 1,899
  • 3
  • 21
  • 40
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
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…
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
  • 159
  • 2
  • 10
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
  • 185
  • 2
  • 15
1
vote
1 answer

How to generate jar in Android Studio for backendless service?

Im trying to make a JAR for backendless service by using Android Studio. I'm using Android Studio and this topic which I am following How to make a .jar out from an Android Studio project When I generate JAR while backendless library included I got…
Boris Ruzanov
  • 1,684
  • 1
  • 8
  • 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
  • 529
  • 4
  • 13
1
vote
0 answers

Upload a file using php curl into the backendless files storage

am trying to upload a file(it could be image or a document) into the ‘backendless files’ through a php form. I have created a new folder in the backendless files(root) in the name of ‘Uploads’ where i want all the uploaded files to be saved. I have…
Shaurya
  • 41
  • 4
1
vote
1 answer

Do you know of any web application code generation tools?

I stumbled upon https://tomassetti.me/code-generation/ which is a list of code generation tools and I was wondering if there were any tools that generate backend or frontend code based on the web app's models(schema).
1
vote
2 answers

Backendless CodeRunner not registering with backendless servers

I'm using Backendless to handle data and push notifications for an iOS app. I am currently trying to write the server side code for a timer in Java. I have followed the guide here to download the timer code, open it and build it in IntelliJ IDEA and…
Mitchell D
  • 415
  • 7
  • 22
1
2
3
16 17