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
0
votes
1 answer

How to add data on Back4App database without migrate with parse

How to add data on Back4App database without migrate with parse database. Can I create database on back4app and implement using code without migrating. we can't find client key and applicationid using back4app.
ayushi
  • 101
  • 1
  • 11
0
votes
1 answer

Query inside for loop in Back4App(Parse)

I am building a social network application using parse which have follow/unfollow feature. I have two tables: Users and Follow table. Users table have user related data and Follow table have two fields: followerId and followedId. I have a list of…
Ankit Kamboj
  • 141
  • 2
  • 13
0
votes
1 answer

Fetch data from Back4App(Parse)

I am building an app using Back4App(Parse). I have two table Post and media. I have to fetch the media(Single or multiple) corresponding to post_id. So, I am using the following approach: First, I have fetched all posts from Post table and save in…
Mamta Kaundal
  • 373
  • 1
  • 5
  • 22
0
votes
1 answer

Android Back4App(Parse) get data from multiple classes

I am building an Android app using Back4App(Parse) database. I have two classes Post and Post_likes. I want to fetch all posts listing from Post table with individual post likes from post_likes table in the same query. In Post table, I have post…
Ankit Kamboj
  • 59
  • 2
  • 9
0
votes
1 answer

Parse Cloudcode error branch taking 60seconds+ to return: why?

I flipped over to back4app, running Parse, and so far looooove it. I am working on a simple bit of cloudcode the seems to fight me at every step. This idea: send up a channel string, do a simple find via Parse.Installation, and return a field in…
drew..
  • 3,234
  • 3
  • 16
  • 19
0
votes
1 answer

Parse Migration Issue

I have lost my data base because I am not able to migrate parse database. Please give us suggestions. Is it able to get my database from parse server ? I was pay for it.I have not any back up of my database.
0
votes
1 answer

Parse Android Facebook sign up not saving name/email

I have got my Parse stuff running on Back4App. I have gotten Facebook signup/login working that goes through Parse and authenticates with Facebook, if the user doesn't exist in the Parse user table it creates the entry. User can then login/logout on…
Adam First
  • 435
  • 1
  • 4
  • 19
0
votes
2 answers

Using a custom server URL with Parse on Xamarin

I'm working on a company project that has been built over the last 18 months and has a backend built using Parse.com, we are in the progress of migrating to Back4App. However I am unable to find how to set the API Server URL in the C# SDK which I'm…
0
votes
1 answer

PFFile to UIImage with swift 3?

I'm trying to use this code if let userPicture = object.valueForKey("Image")! as! PFFile { userPicture.getDataInBackgroundWithBlock({ (imageData: Data!, error: Error!) -> Void in if (error == nil) { let image =…
Basel
  • 550
  • 8
  • 21
0
votes
1 answer

Deploy - Web page code - Back4app

How to deploy my webpage code to back4app, the code has some web end process.So I have to access my created webpage globally how to achieve that
Vetri Vel
  • 21
  • 3
0
votes
1 answer

Streaming audio from parse in Swift 3

I'm using Back4app as Parse server I'm trying to stream audio from Prase everything works fine , but if I click on any index (except index 0) on tableview I got error "fatal error: unexpectedly found nil while unwrapping an Optional value" I don't…
Basel
  • 550
  • 8
  • 21
0
votes
0 answers

Retrieving an array from Parse.com

I am trying to download an array from Back4Apps.com (Parse.com equivalent). The below displays no errors, but when it gets to the line "downloadQuery.findObjectsInBackground { (objects, error) in", it simply skips over the rest of the code to the…
David Sanford
  • 735
  • 12
  • 26
0
votes
1 answer

401 unauthorized error while creating object in back4app via Temboo

I am creating an object in parse (using back4app parse server for this). I get the following error when I run the choreo in temboo. A HTTP Error has occurred: The remote server responded with a status code of 401. Typically this indicates that…
0
votes
0 answers

How to retrieve username from Parse

I'm trying to add the current username to the head of a sliding menu in my app. -similar to this image I got from the internet- I tried adding this code but it gives me an error: ParseUser.getCurrentUser(); t_username = (TextView)…
0
votes
2 answers

Where can I find Android Push Notification Settings in back4app

I'm trying to send a push notification to my app using Parse back{4}app by following this tutorial. But when I get to step 3, they say to edit android push notification settings in the dashboard, but I cannot find this option in my dashboard.…