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:
parent
d3f28cb331
commit
7a7ed266f1
13
HW5/src/edu/uncc/itcs4180/hw5/TwitterClient.java
Normal file
13
HW5/src/edu/uncc/itcs4180/hw5/TwitterClient.java
Normal 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=";
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user