public Authorization() {
String token = Settings.getToken();
String tokenSecret = Settings.getTokenSecret();
if (token != null && tokenSecret != null) {
api = new SoundCloudAPI(ConsumerKey,
"xey7LrTE6YJW9JZX8LR5AHZuQMDJ5SV010fYBYWH8s", token,
tokenSecret);
} else {
api = new SoundCloudAPI(ConsumerKey,
"xey7LrTE6YJW9JZX8LR5AHZuQMDJ5SV010fYBYWH8s");
updateAuthorizationUrl();
}
}