Skip to content

Instantly share code, notes, and snippets.

@spencercarli
Last active February 14, 2016 20:52
Show Gist options
  • Save spencercarli/79bcd28fe9dcebe033b1 to your computer and use it in GitHub Desktop.
Save spencercarli/79bcd28fe9dcebe033b1 to your computer and use it in GitHub Desktop.
Meteor Authentication from React Native - Signing In with a Resume Token - ddp.js
// RNApp/app/ddp.js
/*
* Removed from snippet for brevity
*/
ddpClient.loginWithToken = (loginToken, cb) => {
let params = { resume: loginToken };
return ddpClient.call("login", [params], cb)
}
export default ddpClient;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment