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
6
votes
2 answers

iOS Push Notification: cannot find vaild connection

I'm trying to setup push notifications on my local parse server. I get this error when trying to send a push: parse-server-push-adapter APNS cannot find vaild connection for 9a86...21 (The error repeats for every installation device token.) Any…
cassiozen
  • 259
  • 2
  • 9
6
votes
4 answers

iOS - Can't stream video from Parse Backend

Recently I have created my own parse server hosted on heroku using mongoLab to store my data. My problem is I am saving a video as a parse PFFile, however I can not seem to be able to stream it after saving it. Here are my exact steps. First, I…
Josh
  • 745
  • 1
  • 7
  • 22
5
votes
1 answer

com.parse.ParseObject cannot be cast to

I am developing application which having Parse Platform. To fetch data I am calling ParseCloud.callFunctionInBackground function. I have registered the Parse and its sub class into the Application class like below : public class App extends…
Ronak Joshi
  • 1,553
  • 2
  • 20
  • 43
5
votes
1 answer

Parse Server and mongodb issue

I'm trying to setup a local install of a parse server for my express app. Here is what I have done: npm install -g parse-server mongodb-runner Then: mongodb-runner start That triggered this error: Starting a MongoDB deployment to test…
LukasDeco
  • 266
  • 1
  • 2
  • 12
5
votes
2 answers

PostgreSQL - create an auto-increment column for non-primary key

I am with PostgreSQL 9.5 X64 integrated with the open-source Parse Server. My table has the following structure. objectId (text with fixed 10 characters), item_id (integer), item_name (text with various length) The objectId is the primary key due…
alextc
  • 3,206
  • 10
  • 63
  • 107
5
votes
2 answers

Getting a document synchronously using FireStore

I have been using parse-server as my backend and now migrating all my stuff to FireStore (specifically for storing additional user data). Now, with parse I could directly get the user data just by using ParseUser.getCurrentUser().getString(...). If…
Swapnil
  • 1,870
  • 2
  • 23
  • 48
5
votes
1 answer

Parse server failing to send push notifications?

I have a Parse-Server (hosted by heroku) that I have configured to send push notifications. It appears set up correctly on the dashboard, but when I got to actually send one it just says the push is "Saved" but when I go to check its status, it has…
Runeaway3
  • 1,439
  • 1
  • 17
  • 43
5
votes
2 answers

Parse Server, MongoDB - get "liked" state of an object

I am using Parse Server, which runs on MongoDB. Let's say I have collections User and Comment and a join table of user and comment. User can like a comment, which creates a new record in a join table. Specifically in Parse Server, join table can be…
David Riha
  • 1,368
  • 14
  • 29
5
votes
1 answer

How to know if value changed in Parse Cloud Code afterSave hook?

I want to send push notifications every time the value of a single key of my object changes in a parse cloud code afterSave hook. Parse.Cloud.afterSave("Channel", function(request) { var channel = request.object // TODO: check if value of…
5
votes
2 answers

iOS ParseError : Attempted to change an objectId to one that's already known to the Offline Store

I'm having a regular issue with my project, using Parse Server. First, I call a Parse Cloud function to populate a user's data list : var dataSet: Set? func loadData(withParameters parameters: [String : Any]) { …
Rob
  • 15,732
  • 22
  • 69
  • 107
5
votes
1 answer

populate parse-server schema with swagger

I'd like use swagger to define a schema/API for parse-server. While I'm new to parse server I'm not sure where to start or even if this is a right approach to import a swagger generated schema to parse-server which can be then updated/extended.
ciekawy
  • 2,238
  • 22
  • 35
5
votes
2 answers

MongoError: connection destroyed, not possible to instantiate cursor

While running an app on Heroku, using Parse-Server with mLab, I am getting the following error in the logs: app[web.1]: /app/node_modules/parse-server/lib/ParseServer.js:481 app[web.1]: throw err; app[web.1]: ^ app[web.1]:…
Michel
  • 10,303
  • 17
  • 82
  • 179
5
votes
2 answers

How to deploy a scalable Parse LiveQuery Server?

Recently, we started developing a chat feature for our app and since we are already using Parse SDK/Server, we decided to go with the Parse LiveQuery... The thing is, there's no sufficient enough documentation on how to deploy a Parse LiveQuery…
Sotiris Kaniras
  • 520
  • 1
  • 12
  • 30
5
votes
1 answer

Swift Delete multiple objects at once Parse server

I query to the server following let query = PFQuery(className: "posts") query.whereKey("uuid", equalTo: Ncell.uuidLbl.text!) query.findObjectsInBackground { (objects:[PFObject]?, error:Error?) in if error ==…
user6520705
  • 705
  • 3
  • 11
  • 38
5
votes
1 answer

Parse Server Cloud Code Error 141: Unauthorized

I have just created a parse-server deployment for learning on Cloud9 and everything works fine when I am accessing it using the REST API using PostMan. I am now trying out Cloud Functions. I have the following code in my cloud.js…
Samarth Agarwal
  • 2,044
  • 8
  • 39
  • 79