How to hide appid jskey

< head >

<script src= "https://unpkg.com/[email protected]/dist/parse.js" >< /script >

< /head >

<body>

...

<script>

// 对应服务端设置的 id

Parse.initialize(${appId}, ${javascriptKey});

Parse.serverURL = 'http://127.0.0.1:1337/parse'

we use js sdk ,and fixed input the appid and jskey ,and how to hide the jskey and appid?

There is no way to hide it (same for any other api that relies on keys). You need to protect your data using CLP and ACL: JavaScript Developers Guide | Parse