18 lines
544 B
Java
18 lines
544 B
Java
package manage;
|
|
|
|
public class OAuth2ClientCredentials {
|
|
|
|
/** Value of the "API Key". */
|
|
public static final String API_KEY = "22CSTL"; //maybe togliere le virgolette
|
|
|
|
/** Value of the "API Secret". */
|
|
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 = "127.0.0.1";
|
|
}
|
|
|