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
1
vote
1 answer

Parse anonymous login (Guest user)

I am making a mobile app using Flutter sdk, which requires me to allow a guest user enter into pages wihtout login id. So, I am seeking something like anonymous user login or auto-generate a user with random username. I am using parse_server_sdk. In…
1
vote
1 answer

Custom oAuth system with back4app

I want to develop an app mobile (in Flutter) with a cloud backend (I have not another server). With Firebase, it supports only 4 providers (Fb, Twitter, Google, Github). I need to connect Strava oAuth and use this login in my backend service. So,…
Florian
  • 11
  • 1
1
vote
2 answers

How to drop a class (table) in Back4app Dashboard

I'm new to parse and back4app. While I'm trying to delete a class (table) in the dashboard, I can't find any menu item that allows me to do it. Can anybody point me to the right direction? Also related, is it possible to change a column's name after…
CodeBrew
  • 6,457
  • 2
  • 43
  • 48
1
vote
1 answer

cannot resolve symbol Object in Object.,extend

I'm trying to use a parse server from back4app as my backend and I'm having troubles with the initial installation part.So I followed the documentation given in back4app to connect my app to the parse server and the installation shows in the…
1
vote
1 answer

deployment of local parse server using the Back4app-Cli

I followed the back4app tutorial to run parse locally: https://www.back4app.com/docs/platform/parse-server-local The Parse dashboard is well launched. But when trying to deploy the cloud code by running "b4a deploy", I get the following…
1
vote
1 answer

Using setTimeout() to Schedule pushes

Since Scheduled push is not available on Parse , I'm using setTimeout() to schedule pushes. I'm using back4app. // I call this cloud code Parse.Cloud.define("pushMultiple",async (request) => { //Using set timeout to send out a push 1 hour later …
1
vote
1 answer

Parse Back4App iOS Swift "PFUser.logInWithAuthType(inBackground: apple" method returns task as nil

I'm trying to implement Apple Login in my iOS Swift App. I already have manual signup and Facebook login. I have implemented apple login, and it works fine as it returns the TOKEN and USER each time. But when I pass it in…
Sameer Nawaz
  • 101
  • 10
1
vote
1 answer

Schedule Push notification on Parse

I was wondering if Schedule Push is available on Parse Server? (I'm using Back4App) Here is my cloud code: Parse.Cloud.define("pushMultiple",async (request) => { //Getting Current Date instance var d = new Date(); //Where I live…
1
vote
1 answer

Is there a pre-built Bolts.framework for Objective-C available?

We have tried to update our Bolts.framework (to remove UIWebView references) from the GitHub sources and failed. And the one provided on back4app.com is out of date. Does anyone know if there is an already built Bolts.framework ZIP file posted…
1
vote
1 answer

What is the point of "return" in afterSave handler in Parse

I'm confused as to what the purpose of the return keyword is in afterSave handlers. As far as I know it does not return the result to the client , if so then where is it returning the result to? Pic from Cloud Code documentation give below for…
Tanzim Chowdhury
  • 3,020
  • 2
  • 9
  • 21
1
vote
1 answer

Convert JsonObject to ParseObject in Android

I am sending out ParseObject through push notification so that I may store them locally on the users device. How can make a ParseObject from the JsonObject which is coming through the notifications?
Tanzim Chowdhury
  • 3,020
  • 2
  • 9
  • 21
1
vote
2 answers

Create a blank profile when user signs up

I know this question has been asked on here once before but I need to know if parse has done anything about it. My default user table has a pointer field to a UserProfile class. On signup I have this cloud code…
1
vote
1 answer

How to set Acl for User class in cloud code using before save trigger?

Hello here is my cloud code Parse.Cloud.beforeSave(Parse.User,async (request)=>{ const user = request.object; const t = user.get('tProfile'); const s = user.get('sProfile'); if (!t && !s) { user.setACL(new…
1
vote
0 answers

How to cancel parse back4app get/post request?

I am working on my android app. I am using back4app for data storage. I want to know how to stop/cancel the get/post request. Because some time internet is slow, data is not enough which causes my application to crash. How can i handle this…
1
vote
2 answers

Parse cloud code query hides objects even if master key is used

I'm using parse server cloud function to query a class using master key. The class object has the ACL to allow read only to the user who created the object. The query gives me zero results. But as soon as I change ACL on my test object to public…
Prasad Pawar
  • 1,606
  • 1
  • 15
  • 30