Level 4
do you add your domain in CORS?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
import requests
url = 'https://kargokart.in/api/login' data = { 'email': '[email protected]', 'password': '12345678'} r = requests.post(url, data=data) print (r)
<Response [406]>
Please or to participate in this conversation.