Android Open Source - oauthd-android-sdk O Auth Data






From Project

Back to project page oauthd-android-sdk.

License

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.

Java Source Code

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
}




Java Source Code List

com.fonerevolution.oauthd.OAuthCallback.java
com.fonerevolution.oauthd.OAuthData.java
com.fonerevolution.oauthd.OAuthDialog.java
com.fonerevolution.oauthd.OAuth.java