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,
.לא מצאת סרט או סדרה? היכנס כדי ליצור אותם
?רוצה לדרג או להוסיף פריט אל רשימה
?לא חבר אתר
תגובה מאת ticao2 🇧🇷 pt-BR
ב-ספטמבר 10, 2020 ב-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
ב-ספטמבר 11, 2020 ב-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
ב-מרץ 26, 2021 ב-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
ב-מרץ 26, 2021 ב-5:33אחרי חצות יום
I figured it out. https://www.themoviedb.org/talk/605cbdda8f26bc002a612929#605e51579a64350054ff8c63
תגובה מאת tmdb46558276
ב-אפריל 21, 2021 ב-8:04לפני חצות יום
Am also find Solution For that
תגובה מאת ar1laska
ב-אפריל 13, 2022 ב-3:37אחרי חצות יום
this is a test
תגובה מאת vivek_stark
ב-ספטמבר 10, 2022 ב-1:44אחרי חצות יום
for god's sake somebody tell me what is an account id and where can I find it?
תגובה מאת vivek_stark
ב-ספטמבר 10, 2022 ב-1:46אחרי חצות יום
I have tried my username but is not the account ID. Please help
תגובה מאת asolis_19
ב-ספטמבר 16, 2022 ב-8:59אחרי חצות יום
in get details you can get your id account https://developers.themoviedb.org/3/account/get-account-details
תגובה מאת andromidasj
ב-אוקטובר 28, 2022 ב-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
ב-יוני 13, 2024 ב-7:43לפני חצות יום
I just discovered that at least using v3, you could pass your session_id as a query param instead of accout_id...