Last active
February 10, 2016 08:40
-
-
Save sirvon/bf98c693ca21df65c240 to your computer and use it in GitHub Desktop.
AuthToken pojo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ParseClass | |
Public class AuthToken { | |
String token; | |
String provider; | |
} | |
//put this part after u get the linkedin token. | |
//save linkedin token to shared press (secure) | |
//token = variable | |
//linkedinTokenProviderrovider = variable | |
ParseModel.AuthToken token = new ParseModel.AuthToken(); | |
token.setName(token); | |
token.setProvider(linkedinTokenProvider); | |
person.saveInBackground(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment