I'm trying to send an email and a password through a POST, but the way I'm doing it in the code below it's not working. How could I do this correctly?
import requests
inf = '{"user_email": "celes.....bosa@gmail.com", "user_password": "xxxxxxxxx"}'
z = requests.post('https://www.iped.com.br/api/user/login', data=inf)
print(z)
print(z.json())