Questions tagged [back4app]

Back4app is a mobile-backend-as-a-service platform. It offers the Open Source Parse Server as a backend. Use this tag for questions specific to back4app.

Back4app is a mobile-backend-as-a-service platform. It offers the Open Source Parse server as a backend.

Official site: https://www.back4app.com/

375 questions
2
votes
1 answer

Access Back4App mongodb

I'm trying to access my back4app app mongodb directly from a python script: client = pymongo.MongoClient("mongodb://admin:AAA@mongodb4.back4app.com:27017/BBB?ssl=true") And I see that it connects but can't go further and figure out db name and…
Dmitry Klimkin
  • 445
  • 3
  • 15
2
votes
2 answers

RuntimeException : only ACLs can be stored in the ACL key in android

In android i am using Parse and back4app.com for my back-end, whenever i use myParseobject.saveInBackground() in the return Save Callback i am getting error message that ParseException : only ACLs can be stored in the ACL key If anyone have idea…
varotariya vajsi
  • 3,965
  • 37
  • 39
2
votes
1 answer

Parse error: Cannot modify user using php sdk

I'm trying to modify user using following code. $queryUsers = new ParseQuery("_User"); $queryUsers->equalTo("objectId", $userId); $resultsUsers = $queryUsers->find(); $updateUsers = $queryUsers->first(); $updateUsers->set("status",…
Tush
  • 189
  • 1
  • 10
2
votes
1 answer

back4app problems with cloud code invalid function

My issue is this: I have to implement some payment in an app iOS with conekta, I have the server running in back4app nicely before when I had only functions for braintree in the cloud code was playing nicely now that I have moved to conekta. The…
Pedro.Alonso
  • 1,007
  • 3
  • 20
  • 41
2
votes
1 answer

com.parse.ParseRequest$ParseRequestException: unauthorized error with Back4App (Parse)

I was using Parse with AWS hosting at first for my application but later when Parse shut down their service I moved to back4app. My Login and Signup used to work fine with the previous Parse project but now whenever I Login or Signup with my…
Hamza Amin
  • 49
  • 7
2
votes
1 answer

ParseObject.remove not working in Back4App

I am triying to delete a field of an object in Back4App, but I cannot achieve such a simple operation. By "deleting" I mean set a field that has data to "undefined". According to the guide, I just have to call myObject.remove("field"). I tryed that…
ElYeante
  • 1,745
  • 21
  • 22
2
votes
1 answer

Invalid Function Error when running Cloud Function of Parse Server on back4app

The error code is below: {"code":141,"message":"Invalid function: \"test\""} main.js Parse.Cloud.define('test', function(request, response){ response.success('OK'); }, function(error){ response.error(error); …
nonkertompf
  • 387
  • 1
  • 3
  • 12
2
votes
1 answer

Android Push Notifications with Parse on Back4App not being received

I've configured Push notifications in Android for an app following all the instructions in: https://github.com/ParsePlatform/Parse-Server/wiki/Push-Configuring-Clients https://parseplatform.github.io/docs/android/guide/#push-notifications But no…
mdlapla
  • 37
  • 10
2
votes
1 answer

Get notification when a user wants to add data to the database

I'm about to begin working on a recipe Android app for my college final project, and I want users to be able to add recipes to the database. However, I don't want the data to be added right away, but I'd like to receive a notification whenever…
user3501779
  • 157
  • 1
  • 10
2
votes
2 answers

What to do when I get the unauthorized error in Parse Swift 2.2

I'm using the blank app Parse download and back4app. I put the client and application id on AppDelegate and run the app, but I get the following error: "2016-07-26 11:08:29.681 ParseStarterProject-Swift[1464:107722] [Error]: unauthorized (Code:…
1
vote
0 answers

How can I make my back4app app use a custom s3 bucket under my own aws account?

I have set the following settings. Environment variables: AWS_ACCESS_KEY_ID={my access key name} AWS_SECRET_ACCESS_KEY={my access key} Custom Parse settings: "filesAdapter": { "module": "@parse/s3-files-adapter", "options": { …
Nic Estrada
  • 480
  • 5
  • 16
1
vote
0 answers

How to deploy a Sveltekit app into Back4App

I would like to know how to deploy a Svelte application in Back4app. I already have my application created in Back4app, as well as hosting enabled. I copied one by one the files from my local path .svelte-kit\output\server to Back4App's…
JLLMNCHR
  • 1,551
  • 5
  • 24
  • 50
1
vote
0 answers

Trying to hit port

So I'm trying to create a python discord bot on back4app containers, and I have the dockerfile. When I first made my app it said the dockerfile needed to expose top port so I exposed port 443 cause thats what discord uses I think. Now it…
1
vote
0 answers

Parse server live querying not working for Android App

I am using the Parse Server(Back4app) I have read all the docs given by Parse and back4App but I can't seem to find why the live query is not working. The Code: ParseObject Pins = new ParseObject("Map_Pins"); Pins.put("latitude",…
mr_dark
  • 21
  • 1
1
vote
0 answers

Kotlin Back4app ParseUser authentication

I have 2 simple questions, although it seems simple to me but I couldn't find any helpful materials out there! The question is: How can I login with email and password instead of username and password with Back4app ParseUser using kotlin? How do I…
1 2
3
24 25