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

Unresolved reference: github, when trying to import Fuel library in Kotlin

I am new to Kotlin so apologies if I am missing something simple here. I am trying to import the Fuel libraries into my project, I have added the below into my Gradle which appears to sync fine implementation ‘com.github.kittinunf.fuel:fuel:<latest-version>’ implementation ‘com.github.kittinunf.fuel:<package>:<latest-version>’ However, when I try to import this into my activity as below: import… Read More Unresolved reference: github, when trying to import Fuel library in Kotlin