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

Parse Server: Handling errors with code 209 "Session token is expired." for automatic (anonymous) users

My iOS app uses Parse Server's automatic user feature, namely users do not have to provide login credentials, but instead are logged in automatically and anonymously. These are not users that have been migrated from Parse.com, but automatic users…
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
2 answers

User fields empty in parse-server server.js mail adapter

I use parse-server-amazon-ses-email-adapter and would like to know how to localize the verification email and reset password email. My clue is to check user's fields and then assign the correct template on server.js or AmazonSESAdapter.js. The…
Jorge
  • 1,492
  • 1
  • 18
  • 33
3
votes
1 answer

REST query to get all roles for particular user from parse server

How to create a REST query to get all roles assigned to a user? As this is many to many relation in the opposite direction the regular $relatedTo operator seems to be not enough...
ciekawy
  • 2,238
  • 22
  • 35
3
votes
1 answer

Parse Server with React Native

I'm trying to integrate Parse server with React native, so I followed the documentation and I added parse/react-native package but it keeps throwing this error "TypeError: _reactNative3.default.setAsyncStorage is not a function Here is my snack for…
HanenO
  • 144
  • 2
  • 10
3
votes
1 answer

Heroku rejected the Parse Server app build

I'm struggling to successfully execute a build on Heroku for my Parse Server. The app works locally, In past, it was working well on Heroku. But recently, Heroku is giving errors for new pushes by rejecting it. -----> Node.js app detected ----->…
Keyul
  • 729
  • 1
  • 8
  • 20
3
votes
1 answer

Listen to POST requests, parse-server, node.js

I have a self-hosted parse-server in AWS EC2. I want to update my database when I receive POSTnotifications from Apple. For that, I created a cloud function, but since Apple asks for a urlto send notifications, I'm not sure how to make my cloud…
Jorge
  • 1,492
  • 1
  • 18
  • 33
3
votes
1 answer

Parse-JS-SDK, the matchesKeyInQuery not work with objectId。

javascript "parse-server": "^2.6.3", "parse": "^1.10.0", I have three Table, Member 、 Circle and MemberCircle 。 Circle has a pointer field named member,it means who create the circle 。 And MemberCircle has two pointer filed, member and circle。…
对角另一面
  • 393
  • 2
  • 10
3
votes
1 answer

How to start pm2 with arguments?

I have a simple command that works fine when run: parse-dashboard --config /home/ubuntu/dash/config.json However, when running it with pm2, it doesn't work: pm2 start parse-dashboard -- --config=/home/ubuntu/dash/config.json looking at the logs, i…
az2902
  • 418
  • 6
  • 18
3
votes
0 answers

How to make JOIN in parse plateform?

I have to tables and need to know if I can apply join to get required result. I have to two collections one is "User" and second is "Follow". User collection: objectId name username Follow collection: objectId followerUser followingUser I am…
3
votes
1 answer

How to keep client secret for OAuth2 login to Parse server secure?

I want to enable users in my macos app to be able to securely login to my Parse Server using third-party Oauth2 login. I have been searching for the best approach to do this, but still have some problems. If I understand correctly, logging in…
3
votes
0 answers

Parse Server REST request for all related objects

I'm very new using the Parse Server. I have a class, Book, that contains a field, categories. This field is a relation that points to instances of the class Category. I want to perform a Rest request that retrieves all categories related for all…
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

Using Mongo / BSON ObjectId with Parse Server

I currently have a project that's being migrated away from Parse Server but needs to maintain backwards compatibility. Since Parse Server generates it's own object Ids, rather than using Mongo's I'd like to know: How does Parse Server generate it's…
James
  • 615
  • 1
  • 4
  • 22
3
votes
2 answers

Parse server dashboard login

So, I am new to Android Studio. I'm following an online course step by step. I'm using ParseServer on AWS. I've managed to get my appId, etc. and can connect with a Java SSH Client directly from my browser. My app can successfully store information…