Dear, Could you please help me? Let say, i want Get Favorite Movies, i need call GET /account/{account_id}/movie/favorites But i don't know how can i get my account ID? Thanks,
찾으시는 영화나 TV 프로그램이 없나요? 로그인 하셔서 직접 만들어주세요.
이 항목을 평가하거나 목록에 추가할까요?
회원이 아닌가요?
ticao2 🇧🇷 pt-BR님의 댓글
9월 10, 2020 at 5:57 오후
I don't use v4. So it can be different.
But I believe the ID must be your username.
In my case:
https://www.themoviedb.org/u/ticao2/favorites
tuoitrexuquang님의 댓글
9월 11, 2020 at 5:16 오전
Hi @ticao2 I am trying to fetch the data following this document: https://developers.themoviedb.org/4/account/get-account-lists but i don't know how to get account id?
djmtype님의 댓글
3월 26, 2021 at 3:51 오후
@ticao2 that's the HTTP endpoint, not the API endpoint. The account ID requires and integer not a string, so it wouldn't be your user ID. I'm still trying to find out the answer. Anyone?
djmtype님의 댓글
3월 26, 2021 at 5:33 오후
I figured it out. https://www.themoviedb.org/talk/605cbdda8f26bc002a612929#605e51579a64350054ff8c63
tmdb46558276님의 댓글
4월 21, 2021 at 8:04 오전
Am also find Solution For that
ar1laska님의 댓글
4월 13, 2022 at 3:37 오후
this is a test
vivek_stark님의 댓글
9월 10, 2022 at 1:44 오후
for god's sake somebody tell me what is an account id and where can I find it?
vivek_stark님의 댓글
9월 10, 2022 at 1:46 오후
I have tried my username but is not the account ID. Please help
asolis_19님의 댓글
9월 16, 2022 at 8:59 오후
in get details you can get your id account https://developers.themoviedb.org/3/account/get-account-details
andromidasj님의 댓글
10월 28, 2022 at 12:28 오전
This is poorly documented, but there seem to be a v3 id and a v4 id. The v3 id is retrieved from the endpoint
https://api.themoviedb.org/3/account
(which can be authenticated with just an Authorization header with your bearer token), under "id", and it can only be used on v3 endpoints. For v4 endpoints, the only way I could find so far to get the id is to go through the auth process - generate a request token via the API, validate the request token by going tohttps://www.themoviedb.org/auth/access?request_token={request_token}
, and then generating an access token via the API. On the API response which gives the access token, it also gives the v4 id as well.Seems unnecessarily complicated in my opinion, I wish that a simple call to /account with the proper Bearer token would include the v4 id.
Jerry Dodge님의 댓글
6월 13, 2024 at 7:43 오전
I just discovered that at least using v3, you could pass your session_id as a query param instead of accout_id...