Back to project page twitter4a.
The source code is released under:
Apache License
If you think the Android project twitter4a 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 net.leolink.android.twitter4a.utils; //from w w w.jav a2 s .c o m public class Const { // Twitter OAuth Verifier URL public static final String URL_TWITTER_OAUTH_VERIFIER = "oauth_verifier"; // Callback URL public static final String TWITTER_CALLBACK_PREFIX = "twitter4a://callback"; // SharedPreferences constants public static final String SP_TWITTER4A_FILE_NAME = "twitter4a.prefs"; public static final String SP_TWITTER4A_CONSUMER = "twitter4a_consumer"; public static final String SP_TWITTER4A_CONSUMER_SECRET = "twitter4a_consumer_secret"; public static final String SP_TWITTER4A_TOKEN = "twitter4a_token"; public static final String SP_TWITTER4A_TOKEN_SECRET = "twitter4a_token_secret"; }