The Basics
curl --request POST \ --url https://api.themoviedb.org/3/authentication/token/validate_with_login \ --header 'Authorization: Bearer {ACCESS_TOKEN}' \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "username": "johnny_appleseed", "password": "test123", "request_token": "1531f1a558c8357ce8990cf887ff196e8f5402ec" }
curl --request GET \ --url 'https://api.themoviedb.org/3/search/movie?query=Batman&callback=test' \ --header 'Authorization: Bearer ACCESS_TOKEN' \ --header 'accept: application/json'