Add the constants needed for the Twitter client

master
DjBushido 2014-04-07 09:06:52 -04:00
parent d3f28cb331
commit 7a7ed266f1
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
package edu.uncc.itcs4180.hw5;
import java.net.URL;
public class TwitterClient {
private final String API_KEY = "HuEbvsXOxQsKVmTneyilVtsV6";
private final String API_SECRET = "ZIJqmKEGoQUKLCIit15SKz6XIl4PP1xgDm1jVCIBSDhmImzFqk";
private final String URL_TOKEN = "https://api.twitter.com/oauth2/token";
private final String URL_API = "https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=";
}