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
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
  • 465
  • 8
  • 24
1
vote
1 answer

adding stripe server code to Backendless Cloud

I am trying to integrate stripe into my android application with the server code set up in Backendless as a Custom API Service. After charging the card, with a successful call back method, I am not able to see that in my payments list on my stripe…
Gadosey P.
  • 85
  • 9
1
vote
0 answers

What providers is better for mobile backend private API hosting?

I'm looking at creating a private API for my mobile app to interact with my postgres db. But I have no idea what hosting should I go for? I looked around and shortlist Amazon Mobile Hub, Backendless, and Built.io Which is better among the three?…
user8706644
  • 47
  • 1
  • 9
1
vote
1 answer

Use of undeclared type 'BackendlessCollection'

Hi I am new to Backendless. Please help. I am getting an error like Use of undeclared type 'BackendlessCollection' while using it in a ios . swift I have written function retrieveBlurbs() in home view controller.I have created one more object…
1
vote
0 answers

When sending message App crashes with this error- It works fine prior to AdMob

My message app works fine until Admob is added and I am not sure how to solve the crash. There is nothing wrong with Admob; it works fine but the issue is that after i add it my app crashes. When commenting out Admob it works fine again. Please…
To.vi
  • 43
  • 6
1
vote
0 answers

Is it possible for unauthorized users to add some data into table?

I would like to allow for users to add some data that could be shared with other users. But I don't want users to register in order to do this. When they add some data,I just want user to type his name,I'll save it on backend and that's all. I've…
neo
  • 1,314
  • 2
  • 14
  • 34
1
vote
1 answer

how to observe property changes of Backendless database ? - Swift

I have this code in Swift 3 to get backendless user so I can get his/her properties: let whereClause = "objectId = '\(userId)'" let query = BackendlessDataQuery() query.whereClause = whereClause let…
Zizoo
  • 1,694
  • 5
  • 20
  • 42
1
vote
2 answers

Glide does not showing images from backendless URL

I'm working on android and using 'backendless' as mbass. I have uploaded a picture in their file storage and I'm given a public URL for image retrieving. I'm retrieving image successfully by simple 'HttpURLConnection' but when I use glide, it always…
MubtadaNaqvi
  • 187
  • 12
1
vote
1 answer

PageSize greater than 100 with Backendless Standalone

Backendless Standalone does not have the limits of the hosted version. But when I try to return more than 100 records, I get the following error: https://foo.com/api/v1/data/Product?pageSize=200 { "code": 1025, "message": "Invalid pagesize. Page…
Barry MSIH
  • 3,525
  • 5
  • 32
  • 53
1
vote
1 answer

Trying to retrieve object from backendless, but i get fatal exception

I want to retrieve one object from backendless database table. which call "Category" to make a relationship with this. This is a one to many relationship, called "categories" in the Users table. I really tried everything... I don't know where is…
1
vote
1 answer

Swift 3 and backendless - how do i upload an image?

I'm building an APP with Swift 3 and backendless and i'm having trouble to upload an image from my APP (the user will take a pic from camera or from photoLibrary) to backendless. The APP is saving the images to the photoLibrary : func savePic() { …
SubReal888
  • 13
  • 3
1
vote
2 answers

Android app timeout how to apply? when it minimized

I want to make a exam app I want to apply a feature in my app in this feature when student minimize app then exam will automatically cancelled. so they can't cheat so please tell me what will and how will I do this in Android app in adt.
1
vote
1 answer

How to prevent from an object's property from being sent and created at Backendless

I have object model in backendless app, the schema: public class Message{ public String objectId; private long created_at; private String sender,receiver,text; public boolean isSearched; ... } i don't want to create the column…
Royz
  • 145
  • 1
  • 15
1 2
3
16 17