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
7
votes
3 answers

how to resolve ExpressJS routing when using AngularJS html5Mode (back4app/Parse-Server)

I'm using back4app BaaS service that uses Parse-Server. For the ClientSide I'm running AngularJS with html5Mode(true); My problem is that this is NOT working: http://app.rizop.tv/dashboard While this is working right: http://app.rizop.tv Any idea…
lito
  • 3,105
  • 11
  • 43
  • 71
4
votes
1 answer

CORS error when using Back4App Parse Cloud Code Function

I have a Parse backend running on Back4App. They have a cloud code capability that lets you put NodeJs like functions that you can call from the javascript on your site. I'm not that familiar with NodeJs so there may be something wrong with my…
Ben Anderson
  • 1,069
  • 2
  • 16
  • 38
4
votes
1 answer

Query first works but find does not

I am using angularjs and parse.com to query for three members with spotlight = true. When i use first it will find one but when i use find with limit(3) it will find nothing. I have even removed the Limit(3) and still nothing. I have searched the…
Morgan Hayes
  • 321
  • 2
  • 25
3
votes
2 answers

Parse Server - How to delete image file from the server using cloud code

How can I delete an image's file from the server using Parse Cloud Code. I am using back4app.com After Deleting Image Row I am getting the images urls, then calling a function to delete the image using its url Parse.Cloud.afterDelete("Image",…
Hatim
  • 1,516
  • 1
  • 18
  • 30
3
votes
2 answers

Debugging Parse Cloud-Code

What would be the best way to debug Parse Cloud Code? Currently it's a mess of logging to the console and checking logs. Does anyone have a good workable solution?
stuart
  • 425
  • 6
  • 19
3
votes
3 answers

How can I retrieve objects from back4app using python 3?

I am trying to interact with a database stored in back4app using python. After sending my GET request, I get "{'message': 'Not Found', 'error': {}}". My python code is as follows: import json, http.client, urllib.parse # create a connection to the…
SPFort
  • 53
  • 1
  • 10
3
votes
1 answer

How to trigger Parse.Cloud.afterSave on registers

I am looking for a way to trigger a Parse Cloud Job when a user register in my platform. This Job will set his role. Is it possible? I have try with this code but it is never triggered Parse.Cloud.afterSave(Parse.User, function(request) { …
3
votes
1 answer

How to configure a parse-server app to run Cloud Code on back4app

A brief and clear explanation of how we configure the app.js file and whether we need to require parse-server in it is needed basically. Which files should and shouldn't be related with each other? For example this is the main.js file where a simple…
3
votes
1 answer

Parse PFFile progressBlock:^(int percentDone) { } is not getting called

I am saving a PFFile on Back4App server with Parse SDK, here is the code snippet PFFile *videoFile = [PFFile fileWithName:@"video.mp4" data:data]; [videoFile saveInBackgroundWithBlock:^(BOOL succeeded, NSError * _Nullable error) { if…
Rajat
  • 10,977
  • 3
  • 38
  • 55
3
votes
1 answer

Parse Server User Table Security

I am fairly new at using Parse Server (hosted in back4app) and would like to get some clarification on the pre-created 'users' table. I am currently trying to develop a Web Application (Javascript) using Parse and I am using REST API calls to signup…
user1754960
  • 141
  • 1
  • 4
3
votes
1 answer

How to change url in parse.com android?

Hi As parse beeen officially going to close, I am using an alternative as back4app. So in back4app, documentation says Use this code and change url instead of https://api.parse.com Parse.initialize(new…
Shadow
  • 6,864
  • 6
  • 44
  • 93
2
votes
2 answers

json.filter() doesn't return any result without manually refreshing once

I am making an expense tracker app using React Native and Back4App (Parse) as backend. I want to fetch all objects under class Transactions in the Parse database and filter them by username. The results are like these, Array [ Object { …
san
  • 63
  • 2
  • 10
2
votes
1 answer

Strawberry Shake Code Generation cannot resolve type reference 'None:Any'

I try to use Strawberry Shake to generate Code from Querys in my Client. I created a Demo Project and do all the Steps in the Documentation I can succesfull init it with this command dotnet graphql init https://parseapi.back4app.com/graphql -n…
Evi
  • 101
  • 1
  • 7
2
votes
3 answers

Should NPM packages be required at top of main.js or inside functions? - node.js

I can't find a specific answer to this question anywhere. Using ParseServer with Back4App. I want to know the best place to require NPM packages, and what the difference between these two methods are. main.js - Global file require example const…
RobbB
  • 1,214
  • 11
  • 39
2
votes
0 answers

Updating User details in back4app react native using Parse

I am using back4app as a backend for my react native app.I want to update my current logged in user details.But I could not update it to the DB.Kindly help.My code is given below.Also I get a warning: Possible Unhandles Promise…
Poppy Doss
  • 23
  • 2
1
2 3
24 25