summaryrefslogtreecommitdiff
path: root/src/utils/OAuthUtils.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/OAuthUtils.java')
-rw-r--r--src/utils/OAuthUtils.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/utils/OAuthUtils.java b/src/utils/OAuthUtils.java
deleted file mode 100644
index 3cd5703..0000000
--- a/src/utils/OAuthUtils.java
+++ /dev/null
@@ -1,21 +0,0 @@
-/* TweetTracker. Copyright (c) Arizona Board of Regents on behalf of Arizona State University
- * @author shamanth
- */
-package utils;
-
-public class OAuthUtils
-{
- //Please replace the Consumer key and secret to the one representing your application.
- public static final String CONSUMER_SECRET = "PPCTObQGbGm1gkNvdJiTPKhoTksG787RTBwardkbM";
- public static final String CONSUMER_KEY = "L8CRRCUoRl3xcZ9bdrfUw";
- public static final String REQUEST_TOKEN_URL = "https://twitter.com/oauth/request_token";
- public static final String AUTHORIZE_URL = "https://twitter.com/oauth/authorize";
- public static final String ACCESS_TOKEN_URL = "https://twitter.com/oauth/access_token";
-
-
- //Use a JFIG file for all the configurations
- public void ReadApplicationIdentity()
- {
-
- }
-}