Android Allocine Api
Allocine Api for Android Made with Retrofit2, usable with RxJava2
allocineApi.movieList(AllocineApi.MovieListFilter.NOW_SHOWING, AllocineApi.Profile.SMALL, AllocineApi.MovieListOrder.TOPRANK, 20, 1)
.subscribeOn(Schedulers.io())
.observeOn(AndroidSchedulers.mainThread())
.subscribe(new Consumer<List<Movie>>() {
@Override
public void accept(List<Movie> movies) throws Exception {
//display now showing movies
}
}
);
Download
dependencies {
compile 'com.github.florent37:android-allocine-api:1.0.0'
}
Init
final OkHttpClient okHttpClient = new OkHttpClient.Builder()
.build();
final AllocineApi allocineApi = new AllocineApi(okHttpClient);
Methods
Movie List
allocineApi.movieList(AllocineApi.MovieListFilter.NOW_SHOWING, AllocineApi.Profile.SMALL, AllocineApi.MovieListOrder.TOPRANK, numberElementsPerPage, page) allocineApi.movieList(AllocineApi.MovieListFilter.COMING_SOON, AllocineApi.Profile.SMALL, AllocineApi.MovieListOrder.DATEDESC, numberElementsPerPage page)
Movie (movieId)
allocineApi.movie(movieId, AllocineApi.PROFILE_SMALL) allocineApi.movie(movieId, AllocineApi.PROFILE_MEDIUM) allocineApi.movie(movieId, AllocineApi.PROFILE_LARGE)
Search
Movie
Star
Star List
allocineApi.starsList(PersonListFilter.TOP, AllocineApi.PROFILE_SMALL, numberElementsPerPage, page)
Filmography (starId)
Theater
TheaterShowtime
Disclaimer
This library is just a fork of the PHP library https://github.com/gromez/allocine-api
I did not openend Allocine APK to get the sources and get the API
Credits
Author: Florent Champigny http://www.florentchampigny.com/
Blog : http://www.tutos-android-france.com/
License
Copyright 2017 Florent37, Inc. 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.