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:
- Go to your parse server index.js file
- Find the line where parse server is being initialized
var api = new ParseServer({
- Add your client key there and restart (or redeploy) your parse server
So your code should look like the following:
Post a Comment for "How To Access Parse Client Key From Terminal?"