I get status code 200 with postman but with request.get I get status code 500
When I make the request in postman to this api https://api.bigauto.solutionslion.com/api/store/showApp sending the parameters = { "part_number": "10-659"} https://ibb.co/QvHvxPw image I get the response correctly https://ibb.co/QvHvxPw But when doing it in python I get code status 500 as if the parameter was not being sent import requests parameters = { "part_number": "10-659" } response =… Read More I get status code 200 with postman but with request.get I get status code 500