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

Creating Promises in for...of loop instead forEach?

I want to execute an array of Promises in parallel and then wait until all Promises are executed. This works: var promises = []; objects.forEach(function(object) { let promise = new Parse.Promise.as() .then( function() { …
Manuel
  • 14,274
  • 6
  • 57
  • 130
4
votes
2 answers

Clone Parse Server object

I have a Parse object (well, an array of parse objects). I want to make a clone of the objects but everything I try fails...in that changing the original object attributes also changes the clone's corresponding attribute. I have tried using…
SimpleOne
  • 1,066
  • 3
  • 12
  • 29
4
votes
2 answers

Disable login for specific user

I'm trying to disable specific user accounts from logging in. I can't remove the account because the user should be able to access all his old records when he is enabled again. I've made a fork of parse-server and edited the UsersRouter to achieve…
Tim Klingeleers
  • 2,834
  • 14
  • 20
4
votes
1 answer

"libParseLib.a does not contain bitcode" error

I never had any problems when using CocoaPods up to this point (I used it a few times to integrate Parse into my iOS app). But this time I am puzzled by the message below. When I previously used CocoaPods the project was containing only one target,…
Michel
  • 10,303
  • 17
  • 82
  • 179
4
votes
1 answer

Is it possible to check inside beforeSave method if Parse master key is used?

It is important in my app to have no duplicates so I have this code: Parse.Cloud.beforeSave("Thing", function(request, response) { var newEntryThing = request.object; var thingId= newEntryThing.get("thingId"); var queryThings= new…
quarks
  • 33,478
  • 73
  • 290
  • 513
4
votes
1 answer

Parse Server with mailgun adapter - how can I get verification email to work?

Today I set up mailgun to enable password reset and verification emails on my parse-server. After hour of troubleshooting why verification email is not working, I tried password reset and discovered that password reset was working fine. I have tried…
zirinisp
  • 9,971
  • 5
  • 32
  • 38
4
votes
1 answer

Parse-server: Set logLevel

In the latest version of parse-server, the default logLevel seem to be "info", which logs all cloud code functions. How do I change this so it only logs errors? Thanks
BlackMouse
  • 4,442
  • 6
  • 38
  • 65
4
votes
1 answer

connect my webapi with parse server using identityserver

I have a Asp.Net WebApi that provide some native and javascript platforms with its data. I have identityserver3 as the authentication/authorization module for this WebApi. For example i used implicit flow in the communcation between my WebApi and…
Marzouk
  • 2,650
  • 3
  • 25
  • 56
4
votes
1 answer

Testing CloudCode in self-hosted Parse Server

I'm looking for best practices on how to setup a test environment for CloudCode in a self-hosted Parse server. I assumed that testing got easier now that we have full control over the server and the attached database; however, so far I could not…
dr_barto
  • 5,723
  • 3
  • 26
  • 47
4
votes
0 answers

Parse Server CloudCode - 502 Bad Gateway in AWS Elastic Beanstalk when updating cloud folder

So I created my Parse Server on AWS EB using the press button method here: https://github.com/ParsePlatform/parse-server-example And then it set up and was running fine. I then created a directory on my local machine (I already have EB CLI…
4
votes
1 answer

Parse Server Security

I am running a clean Heroku & MLab installation of the Parse Server (https://github.com/ParsePlatform/parse-server-example), which I am controlling using the Parse Server Dashboard (https://github.com/ParsePlatform/parse-dashboard). I can make Rest…
Mr T
  • 990
  • 10
  • 32
4
votes
2 answers

Using Parse Javascript SDK in express app with Parse-Server

I have a node.js express app using the Parse Javascript SDK and Parse-Server. I've set everything up according to the guide but the JS SDK is not working. I'm getting {error:unauthorized}. I can access my server with REST API just fine but not from…
MayNotBe
  • 2,110
  • 3
  • 32
  • 47
4
votes
0 answers

Adapting parse server to use auth0?

Has anyone tried to adapt parse server to use the auth0 express-jwt authentication mechanism? I.e. I'd like my mobile app users to authenticate via auth0, then make requests to my self-hosted parse server with the http header including the Bearer…
mm2001
  • 6,427
  • 5
  • 39
  • 37
4
votes
2 answers

Parse-Server Not Downloading PFFile due to App Transport Security

I'm in the process of migrating from Parse's backend to the Parse-server on Heroku and MongoDB. I had everything working smoothly (including loading PFFiles) with this new backend change, however, I'm now getting errors after adding the…
4
votes
0 answers

Error: Use of unresolved identifier 'ParseClientConfiguration'

Migrating from Parse to Heroku. I've updated my AppDelegate.swift file to include: let config = ParseClientConfiguration(block: { (ParseMutableClientConfiguration) -> Void in ParseMutableClientConfiguration.applicationId = "..."; …
Alexyesiam
  • 79
  • 8