/**
* Informations sur une personne
*/
private Single<News> news(String idNews, String profile) {
final String params = ServiceSecurity.construireParams(false,
AllocineService.CODE, idNews,
AllocineService.PROFILE, profile
);
final String sed = ServiceSecurity.getSED();
final String sig = ServiceSecurity.getSIG(params, sed);
return allocineService.news(idNews, profile, sed, sig)
.map(new Function<AllocineResponse, News>() {
@Override
public News apply(AllocineResponse allocineResponse) throws Exception {
return null;
}
});
}
AllocineApi.java 文件源码
java
阅读 33
收藏 0
点赞 0
评论 0
项目:Android-Allocine-Api
作者:
评论列表
文章目录