1
0
mirror of https://github.com/bspeice/itcs4180 synced 2024-11-13 19:08:20 -05:00

Add the constants needed for the Twitter client

This commit is contained in:
DjBushido 2014-04-07 09:06:52 -04:00
parent d3f28cb331
commit 7a7ed266f1

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=";
}