Back to project page androidcodes.
The source code is released under:
GNU General Public License
If you think the Android project androidcodes 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.app.twitterclient.utils; //from www . j a va 2 s.c o m public class ConsumerKeyConstants { // Create a new key/secret here: https://dev.twitter.com/apps public static final String TWITTER_CONSUMER_KEY = "2YDIydfHv8iUBvoX4Vl9pH5Ul"; public static final String TWITTER_CONSUMER_SECRET = "iPnP4SNNGJttymbykI0oysd2OUctKO3efCUFOU5rVM0eo04fon"; // Preference Constants public static String PREFERENCE_NAME = "twitter_oauth"; public static final String PREF_KEY_OAUTH_TOKEN = "oauth_token"; public static final String PREF_KEY_OAUTH_SECRET = "oauth_token_secret"; public static final String PREF_KEY_TWITTER_LOGIN = "isTwitterLogedIn"; public static final String TWITTER_CALLBACK_URL = "http://oauth.gmodules.com/gadgets/oauthcallback"; // Twitter oauth urls public static final String URL_TWITTER_AUTH = "auth_url"; public static final String URL_TWITTER_OAUTH_VERIFIER = "oauth_verifier"; public static final String URL_TWITTER_OAUTH_TOKEN = "oauth_token"; }