1

I have a problem when I try to signup to my app using Facebook, this worked until recently, the provider is 'facebook':

self.socialSignup = function (provider) {
    return Backand.socialSignUp(provider).then(function (response) {
        loadUserDetails();
        return response;
    });
};

But now I get this error:

MessageEvent {isTrusted: true, data: "{"error":{"message":"can't signup without email. NO_EMAIL_SOCIAL","provider":"facebook"}}...

"can't signup without email. NO_EMAIL_SOCIAL (signing in with facebook)","error_description":"can't signup without email. NO_EMAIL_SOCIAL (signing in with facebook)"

I use angularbknd-sdk 1.8.2, but I try with 1.8.11.

Pang
  • 9,564
  • 146
  • 81
  • 122

1 Answers1

1

The issue is not reproduced with Vanilla SDK backand-angular1-sdk 1.9.1 Install it with bower install backand-angular1-sdk

We tried again now with backand-angular1-sdk 1.9.13 and it worked. Note 1.9.13

Kornatzky
  • 188
  • 2
  • 12
  • I change the Backand SDK to backand-angular1-sdk v1.9.13 and i use the SDK backand-vanilla-sdk v1.1.11, but i recive the same error "can't signup without email. NO_EMAIL_SOCIAL". – Saul Padilla May 15 '17 at 17:05