Closed
Description
As the title suggests, using
Parse.User.signUp(null, {useMasterKey: true, installationId: '...'})
does not actually pass the installationId.
I spent more time than I probably should tracking down the issue here parse-community/parse-server#3996
The short answer is Parse.User.signUp actually does a ParseObject.save() at its core which does not send an installationId. Inserting the following code just before this line
solves the problem:
Parse-SDK-JS/src/ParseObject.js
Line 1085 in ee33c48
if (options.hasOwnProperty('installationId')) {
saveOptions.installationId = options.installationId;
}
Metadata
Metadata
Assignees
Labels
No labels