enlastfm.1.0.3.source-code.Launcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlastfm Show documentation
Show all versions of openlastfm Show documentation
Simple Java library for non-auth methods of Last.FM API
The newest version!
/*
* Copyright (c) 2017 BlizzedRu (Ivan Vlasov)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import ru.blizzed.openlastfm.ApiRequestException;
import ru.blizzed.openlastfm.ApiResponseException;
import ru.blizzed.openlastfm.OpenLastFMContext;
import ru.blizzed.openlastfm.methods.*;
import ru.blizzed.openlastfm.models.artist.ArtistInfo;
import ru.blizzed.openlastfm.params.LastFMParams;
import java.util.Locale;
public class Launcher {
public static void main(String[] args) {
OpenLastFMContext.initialize("");
try {
ApiResponse artistInfo = ApiArtist.getInfo().withParams(
LastFMParams.ARTIST.of("nirvana")
).execute();
System.out.println(artistInfo.getContent().getBio().getSummary());
} catch (ApiResponseException e) {
// Handle error
e.printStackTrace();
} catch (ApiRequestException e2) {
e2.printStackTrace();
}
}
}