I am getting Url can't contain special character.{the whole url with mobile number and otp in it} (found at least ' ') errror. Please help
'''
def send_otp(mobile , otp):
print("FUNCTION CALLED")
conn = http.client.HTTPSConnection("api.msg91.com")
authkey = settings.AUTH_KEY
headers = { 'content-type': "application/json" }
url = "http://control.msg91.com/api/sendotp.php?otp="+otp+"&message="+"Your otp is "+otp +"&mobile="+mobile+"&authkey="+authkey+"&country=91"
conn.request("GET", url , headers=headers)
res = conn.getresponse()
data = res.read()
print(data)
return None
'''