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,
Un film, une émission télévisée ou un artiste est introuvable ? Connectez-vous afin de créer une nouvelle fiche.
Vous souhaitez évaluer ou ajouter cet élément à une liste ?
Pas encore membre ?
Réponse de ticao2 🇧🇷 pt-BR
le 10 septembre 2020 Ă 17h57
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
Réponse de tuoitrexuquang
le 11 septembre 2020 Ă 05h16
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?
Réponse de djmtype
le 26 mars 2021 Ă 15h51
@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?
Réponse de djmtype
le 26 mars 2021 Ă 17h33
I figured it out. https://www.themoviedb.org/talk/605cbdda8f26bc002a612929#605e51579a64350054ff8c63
Réponse de tmdb46558276
le 21 avril 2021 Ă 08h04
Am also find Solution For that
Réponse de ar1laska
le 13 avril 2022 Ă 15h37
this is a test
Réponse de vivek_stark
le 10 septembre 2022 Ă 13h44
for god's sake somebody tell me what is an account id and where can I find it?
Réponse de vivek_stark
le 10 septembre 2022 Ă 13h46
I have tried my username but is not the account ID. Please help
Réponse de asolis_19
le 16 septembre 2022 Ă 20h59
in get details you can get your id account https://developers.themoviedb.org/3/account/get-account-details
Réponse de andromidasj
le 28 octobre 2022 Ă 00h28
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.
Réponse de Jerry Dodge
le 13 juin 2024 Ă 07h43
I just discovered that at least using v3, you could pass your session_id as a query param instead of accout_id...