Search code examples
parse-platformparse-server

How to restrict parse config parameter visible to clients?


Is there any way to remove certain ParseConfig parameters that a client (Android, iOS) receives with ParseConfig.getInBackground(...)?

The idea is that certain config parameters are used server-side in cloud code and should not be visible to clients, while other parameters are used to configure the client.


Solution

  • This has since been solved by allowing to restrict individual Parse Config parameters to be accessible only with the master key.

    enter image description here

    See https://github.com/parse-community/parse-server/issues/5930.