gpt4 book ai didi

java - 如何在javafx应用程序中实现themoviedb api

转载 作者:行者123 更新时间:2023-12-01 10:07:20 26 4
gpt4 key购买 nike

我有 themoviedb.jar 文件,但我不知道如何使用它?,我以前没有使用过 api,所以请帮助我提供一个关于如何在 javaFX 或特定 themoviedb 中使用 api 的一般示例.jar api 或建议我任何指南。

最佳答案

Uwe Trottmann 做得非常好 wrapper around the tmdb api

来自文档:

// Create an instance of the service you wish to use
// you can keep this around
Tmdb tmdb = new Tmdb();
tmdb.setApiKey("yourapikey");
MovieService movieService = tmdb.movieService();
//
// Call any of the available endpoints
Call<Movie> call = movieService.summary(550);
Movie movie = call.execute().body();
Call<Trailers> callTrailers = movieService.trailers(550);
Trailers trailers = callTrailers.execute().body();

只需查看 test cases看看它是如何工作的。

关于java - 如何在javafx应用程序中实现themoviedb api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36361366/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com