This number is required aparently in some methods like https://api.themoviedb.org/3/account/{account_id}
If you try this endpoint in API documentation and delete the required account_id path param you obtain a succesful response. I don't know if is an error or the endpoint obtains the usser account acroos the ACCES_TOKEN_AUTH.
Travis Bell 的回复
于 2018 年 09 月 23 日 12:42下午
You will get the account id from completing a /auth/access_token request. You can check out the example response.
Santos_90 的回复
于 2024 年 05 月 28 日 5:57上午
These account_id is really account_object_id used in some endpoints in API v4. The account_id is an Int, not a String:
This number is required aparently in some methods like https://api.themoviedb.org/3/account/{account_id} If you try this endpoint in API documentation and delete the required account_id path param you obtain a succesful response. I don't know if is an error or the endpoint obtains the usser account acroos the ACCES_TOKEN_AUTH.
These is my solution in Kotlin: