/MWAppsTheTvDBClient

MWApps java client for The TVDB REST API (v2.1.2)

Primary LanguageJavaApache License 2.0Apache-2.0

MWAppsTheTvDBClient

MWApps java client for The TVDB REST API (v2.2.0).

TheTVDB.com is an open database for television show fans where everybody can modified it.

Follow the example implementation:

try {

	TheTvDB theTvDB = new TheTvDB(
		"Apikey",
		"Username",
		"Userkey",
		"languaje"
	);

	UpdatesResponse updatesResponse = theTvDB.updates(null, null);
	if(updatesResponse.getData()!=null){
		for(Update itemUpdate : updatesResponse.getData()){
			SerieByIdResponse serieById = theTvDB.serieById(itemUpdate.getId(), null);
		}
	}
} catch (TheTvDBClientException e) {

}

License

Created by Omar Manrique Zorrilla under Apache License 2.0