Python Forum
http.client.HTTPSConnection and user authentication?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
http.client.HTTPSConnection and user authentication?
#1
We have a self-signed site I can use curl to retrieve the data using the REST API:

curl https://user:[email protected]/rest/api/something

But I don't know how to do the same using http.client.HTTPSConnection(). I did some google search but didn't see a good way.

import http.client
import ssl
import urllib.parse

context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
context.verify_mode = ssl.CERT_REQUIRED
context.load_verify_locations('mywonca.crt')
conn = http.client.HTTPSConnection('username:[email protected]', 443, context=context)
conn.request("GET","/rest/api/something")
r1 = conn.getresponse()
It complains the socket gaierror. I know I probably should not put the username:passws in the host part, but I don't know where I can set it.
Reply


Messages In This Thread
http.client.HTTPSConnection and user authentication? - by geekgeek - Apr-03-2020, 03:38 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Prompt of Access ( Authentication Http ) ? JohnnyCoffee 4 1,834 Dec-08-2022, 12:42 PM
Last Post: DeaD_EyE
  IMAP authentication matt_the_hall 0 2,032 Feb-23-2021, 08:38 PM
Last Post: matt_the_hall

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020