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 ea247c5 commit b14d2d4Copy full SHA for b14d2d4
_includes/js/users.md
@@ -420,7 +420,7 @@ let myAuthData = {
420
"auth_token_secret": "SaMpLeEb13SpRzQ4DAIzutEkCE2LBIm2ZQDsP3WUU"
421
}
422
let user = new Parse.User();
423
-user._linkWith('twitter', myAuthData).then(function(user){
+user._linkWith('twitter', { authData: myAuthData }).then(function(user){
424
// user
425
});
426
```
@@ -481,7 +481,7 @@ let myAuthData = {
481
482
483
user.id = "uMz0YZeAqc";
484
-user._linkWith("facebook", myAuthData).then(function(user){
+user._linkWith("facebook", { authData: myAuthData }).then(function(user){
485
// user is linked now
486
487
0 commit comments