Start a new topic

Ember.js social login

Hello,



I do not see Facebook or Twitter login integration in the guides. What is the state of Ember.js integration right now?
1 Comment

This is planned, but no definitive date yet.



Right now, you can obtain the access tokens yourself (e.g. through the third party API), and use them directly in a login call:



```

Kinvey.User.login({

_socialIdentity: {

facebook: {

access_token: '',

expires_in: ''

}

}

});

```
Login or Signup to post a comment