We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 791c551 commit 6a17ecaCopy full SHA for 6a17eca
src/index.js
@@ -79,10 +79,10 @@ function ParseServer({
79
databaseURI,
80
cloud,
81
collectionPrefix = '',
82
- clientKey = '',
83
- javascriptKey = randomString(20),
84
- dotNetKey = '',
85
- restAPIKey = '',
+ clientKey,
+ javascriptKey,
+ dotNetKey,
+ restAPIKey,
86
fileKey = 'invalid-file-key',
87
facebookAppIds = [],
88
enableAnonymousUsers = true,
@@ -92,7 +92,7 @@ function ParseServer({
92
}) {
93
94
// Initialize the node client SDK automatically
95
- Parse.initialize(appId, javascriptKey, masterKey);
+ Parse.initialize(appId, javascriptKey || 'unused', masterKey);
96
Parse.serverURL = serverURL;
97
98
if (databaseAdapter) {
0 commit comments