Back to project page Twitter-News.
The source code is released under:
Apache License
If you think the Android project Twitter-News 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.kaplandroid.twitternews.twitterapi; /*from w w w . j a va 2 s. c om*/ /** * * Twitter API Constants * * @author KAPLANDROID * */ public class TwitterConstant { public static final String SHARED_PREF_NAME = "demo_twitter_oauth"; public static final String SHARED_PREF_KEY_SECRET = "demo_oauth_token_secret"; public static final String SHARED_PREF_KEY_TOKEN = "demo_oauth_token"; public static final String TWITTER_CALLBACK_URL = "x-demo-twitter://twitternewsmobilike"; public static final String TWITTER_CONSUMER_KEY = "io5OrGm1Dc0zfIAPWtaIJxbeC"; public static final String TWITTER_CONSUMER_SECRET = "egXEmHOMcV19vnv7SqDMXyEhbe790oZCtRjEL3ZrStmR6Zp0bM"; public static final String IEXTRA_AUTH_URL = "auth_url"; public static final String IEXTRA_OAUTH_VERIFIER = "oauth_verifier"; public static final String IEXTRA_OAUTH_TOKEN = "oauth_token"; }