Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以通过会话 ID 获取帐户详细信息,但无法使用相同的会话 ID 获取最喜欢的电影。有人知道吗?
一旦你有一个有效session_id的用户,你需要做的就是调用 users/movie/favorite方法。这是一个例子:
session_id
/movie/favorite
https://api.themoviedb.org/3/account/{ID}/favorite/movies?api_key={API_KEY}&session_id={SESSION_ID}
请注意需要更改的{ID},{API_KEY}和vars。{SESSION_ID}
{ID}
{API_KEY}
{SESSION_ID}
希望有帮助。