Skip to content Skip to sidebar Skip to footer

How To Access Parse Client Key From Terminal?

I have one Migrated Parse server right now with Bitnami. I have all the keys but I am not able to access it's ClientKey. I want to Implement that ClientKey at Android app for Push

Solution 1:

as you probably know.. client keys are not required in parse server but if you still want to require client keys this needs to be done inside the parse server initialization.

so in order to set your client key you need to do the following:

  1. Go to your parse server index.js file
  2. Find the line where parse server is being initialized

var api = new ParseServer({

  1. Add your client key there and restart (or redeploy) your parse server

So your code should look like the following:

enter image description here

Post a Comment for "How To Access Parse Client Key From Terminal?"