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, 21 insertions, 0 deletions
diff --git a/src/utils/OAuthUtils.java b/src/utils/OAuthUtils.java
new file mode 100644
index 0000000..3cd5703
--- /dev/null
+++ b/src/utils/OAuthUtils.java
@@ -0,0 +1,21 @@
+/* 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()
+ {
+
+ }
+}