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,
Bir filmi veya diziyi bulamıyor musun? Eklemek için oturum aç.
Bu öğeyi derecelendirmek veya bir listeye eklemek ister misiniz?
Üye değil misin?
ticao2 🇧🇷 pt-BR adlı kullanıcıyı yanıtla
10 a 2020 tarihinde saat 5:57 ÖS'da
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 adlı kullanıcıyı yanıtla
11 a 2020 tarihinde saat 5:16 ÖÖ'da
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 adlı kullanıcıyı yanıtla
26 l 2021 tarihinde saat 3:51 ÖS'da
@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 adlı kullanıcıyı yanıtla
26 l 2021 tarihinde saat 5:33 ÖS'da
I figured it out. https://www.themoviedb.org/talk/605cbdda8f26bc002a612929#605e51579a64350054ff8c63
tmdb46558276 adlı kullanıcıyı yanıtla
21 , 2021 tarihinde saat 8:04 ÖÖ'da
Am also find Solution For that
ar1laska adlı kullanıcıyı yanıtla
13 , 2022 tarihinde saat 3:37 ÖS'da
this is a test
vivek_stark adlı kullanıcıyı yanıtla
10 a 2022 tarihinde saat 1:44 ÖS'da
for god's sake somebody tell me what is an account id and where can I find it?
vivek_stark adlı kullanıcıyı yanıtla
10 a 2022 tarihinde saat 1:46 ÖS'da
I have tried my username but is not the account ID. Please help
asolis_19 adlı kullanıcıyı yanıtla
16 a 2022 tarihinde saat 8:59 ÖS'da
in get details you can get your id account https://developers.themoviedb.org/3/account/get-account-details
andromidasj adlı kullanıcıyı yanıtla
28 k 2022 tarihinde saat 12:28 ÖÖ'da
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 adlı kullanıcıyı yanıtla
13 " 2024 tarihinde saat 7:43 ÖÖ'da
I just discovered that at least using v3, you could pass your session_id as a query param instead of accout_id...