Questions tagged [parse-server]

Parse Server is an open source version of the Parse backend that can be deployed to any infrastructure that can run Node.js.

Parse Server is an open source version of the Parse backend that can be deployed to any infrastructure that can run Node.js. Parse Server let you build applications faster.

You can find the documentation for this project on docs.parseplatform.org

It works with the Express web application framework. It can be added to existing web applications, or run by itself.

1854 questions
4
votes
1 answer

Parse LocalDataStore does not work when using Parse-Server - 'Method requires Pinning enabled.'

I have recently started using Parse-Server and have migrated my Parse App, now when I try to use Parse Local DataStore I receive the following error: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Method…
Shayno
  • 788
  • 9
  • 26
4
votes
1 answer

Access files uploaded to Parse.com after Heroku migration

I am attempting to migrate my server from Parse.com over to Heroku with their one click migration. Their documentation says that Parse Server supports "file" type, but I can't find any documentation on transferring these files so Heroku can access…
Alex W
  • 1,096
  • 9
  • 8
3
votes
1 answer

LiveQuery does not work, if there is ParseConnectivityProvider provided

I'm working on a Flutter app, that consists of a employee scheduler with a Parse Server background.The app works as the following: 1)User opens the app; 2)The app shows a list of cards of available employees (if there is some in the server…
Lucas Studart
  • 73
  • 1
  • 7
3
votes
1 answer

Apple SignIn with Parse Server

My App is hosted on sashido.io, which offers Parse Server Hosting. Since it is required, I am trying to implement Apple SignIn for my app. As a first step, I've added the following code to my app. The Apple SignIn works, I get the token and the id,…
Stephan Boner
  • 733
  • 1
  • 6
  • 27
3
votes
0 answers

Which version of Parse-server and mongodb driver at minimum should I use for support of MongoDB 4.2?

I am currently with Parse-server 2.8.4 and mongo driver 3.1.0 to support a mongoDB 4.0 cluster hosted on MongoDB Atlas. It was announced that my cluster would be automatically upgraded to mongoDB 4.2 by Atlas. I am wondering if the Parse-server…
alextc
  • 3,206
  • 10
  • 63
  • 107
3
votes
1 answer

How can I call a function using parse-server

I'm developing a JavaScript web app, and I'm trying to make a "forgot password" feature. I know how to make a function on the server-side, in the Cloud code with Parse function. But what I can't do is pass the object from my controller (in the…
M. Alves
  • 35
  • 1
  • 6
3
votes
1 answer

'Schema class name does not revalidate' error when trying to add a class to parse

I'm trying to save a class to parse. However, when I do that it gives me the error 'schema class name does not revalidate'. How do I handle this? I've already tried to change the name of the class, but even then it does not work. I'm a beginner when…
3
votes
0 answers

Query by ACL in cloud function?

I have set up my class to control access using ACLs. Only the creator of the object can view or edit the object. There are many thousands of these objects in use in a production environment. I have a new requirement to, under a certain circumstance,…
Ben Packard
  • 26,102
  • 25
  • 102
  • 183
3
votes
0 answers

Can't send notifications from Parse Server

I am trying to send push notifications from Bitnami Parse Server (3.1.2) hosted on AWS. I have the server key and the sender ID from firebase in server.js. Notifications work from the firebase console but not from parse server (neither from the…
VladD
  • 31
  • 1
3
votes
1 answer

"Server is started without SSL support" error when trying to save or retrieve data from parse server with MongoDB

I'm trying to use parse locally (with MongoDB) with my iOS mobile app. I've installed node, mongo, parse, parse dashboard. I've created a pod file for my iOS project (XCode), installed parse with it. I put this code into the application…
Tio
  • 73
  • 1
  • 2
  • 14
3
votes
1 answer

How to retrieve a pointer of parseObject subclasses [PARSE SERVER]

I'd like to use subclasses, but I'm having some issues with this. The documentation does not make it clear how to retrieve all the data types available on the parse server with the subclasses. this is my…
3
votes
2 answers

Login as a user in parse-server without having his password useing the master key?

It's possible to "simulate" a user using the master key? I would like this feature to test what the user can really see in the application and verify that he does not have access to some part of it etc. Is this possible without knowing the password…
Simoyw
  • 681
  • 1
  • 9
  • 30
3
votes
1 answer

How do I correctly use Parse.Roles relationships for multiple Parse.Objects and Users over time?

Most of the following is done with the parse-dashboard so it's a bit wordy, but I understand the code just not the relationships. I'm setting Parse.Roles and it seems like each individual Parse.Object needs to have the Role set to have access to a…
3
votes
1 answer

Parse Cloud Code Function Response Success is not a function

I'm trying to call a Parse Cloud Function from an iOS client but the response.success() function seems to be null. I am getting an error saying that response.success is not a function on the server. This is my Parse Cloud…
srdzdv
  • 35
  • 1
  • 5
3
votes
1 answer

MongoDB indexing for a Parse Server application

We have a social app where users can chat with each other and we’ve reached 350K messages! We recently noticed that as the number of messages is growing, the find operations are getting slower! I believe the issue here is that the Message collection…
Sotiris Kaniras
  • 520
  • 1
  • 12
  • 30