Back to project page oauthd-android-sdk.
The source code is released under:
Apache License
If you think the Android project oauthd-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.fonerevolution.oauthd; /*w ww. j a v a 2 s. co m*/ /* ** Class with all the information of the authentication ** */ public class OAuthData { public String provider; // name of the provider public String state; // state send public String token; // token received public String secret; // secret received (only in oauth1) public String status; // status of the request (succes, error, ....) public String expires_in; // if the token expires public String error; // error encountered }