Work on FITBIT classes proceeds

This commit is contained in:
Giulia
2018-06-01 12:30:44 +02:00
parent cd65149211
commit fc135908f5
11 changed files with 305 additions and 124 deletions

View File

@@ -3,16 +3,16 @@ package manage;
public class OAuth2ClientCredentials {
/** Value of the "API Key". */
public static final String API_KEY = "22CSTL";
public static final String API_KEY = "22CSTL"; //maybe togliere le virgolette
/** Value of the "API Secret". */
public static final String API_SECRET = "ea2452013abd35609940ce5601960a08";
public static final String API_SECRET = "ea2452013abd35609940ce5601960a08"; //maybe togliere le virgolette
/** Port in the "Callback URL". */
public static final int PORT = 8080;
/** Domain name in the "Callback URL". */
public static final String DOMAIN = "http://127.0.0.1:8080/";
public static final String DOMAIN = "127.0.0.1";
public static void errorIfNotSpecified() {
if (API_KEY.startsWith("Enter ") || API_SECRET.startsWith("Enter ")) {