Richieste - Certificazione SSL
Il certificato SSL è una funzionalità di sicurezza fornita con URL protetti. Quando si utilizza la libreria Richieste, vengono verificati anche i certificati SSL per l'URL https fornito. La verifica SSL è abilitata per impostazione predefinita nel modulo delle richieste e genererà un errore se il certificato non è presente.
Lavorare con URL protetto
Di seguito è riportato l'esempio di lavoro con URL protetto:
import requests
getdata = requests.get(https://jsonplaceholder.typicode.com/users)
print(getdata.text)
Produzione
E:\prequests>python makeRequest.py
[
{
"id": 1,
"name": "Leanne Graham",
"username": "Bret",
"email": "[email protected]",
"address": {
"street": "Kulas Light",
"suite": "Apt. 556",
"city": "Gwenborough",
"zipcode": "92998-3874",
"geo": {
"lat": "-37.3159",
"lng": "81.1496"
}
},
"phone": "1-770-736-8031 x56442",
"website": "hildegard.org",
"company": {
"name": "Romaguera-Crona",
"catchPhrase": "Multi-layered client-server neural-net",
"bs": "harness real-time e-markets"
}
}
]
Stiamo ottenendo facilmente una risposta dall'URL https sopra, ed è perché il modulo di richiesta può verificare il certificato SSL.
Puoi disabilitare la verifica SSL aggiungendo semplicemente verify = False come mostrato nell'esempio seguente.
Esempio
import requests
getdata =
requests.get('https://jsonplaceholder.typicode.com/users', verify=False)
print(getdata.text)
Otterrai l'output, ma fornirà anche un messaggio di avviso che indica che il certificato SSL non è verificato e si consiglia di aggiungere la verifica del certificato.
Produzione
E:\prequests>python makeRequest.py
connectionpool.py:851: InsecureRequestWarning: Unverified HTTPS request is
being made. Adding certificate verification is strongly advised. See:
https://urllib3
.readthedocs.io/en/latest/advanced-usage.htm l#ssl-warnings
InsecureRequestWarning)
[
{
"id": 1,
"name": "Leanne Graham",
"username": "Bret",
"email": "[email protected]",
"address": {
"street": "Kulas Light",
"suite": "Apt. 556",
"city": "Gwenborough",
"zipcode": "92998-3874",
"geo": {
"lat": "-37.3159",
"lng": "81.1496"
}
},
"phone": "1-770-736-8031 x56442",
"website": "hildegard.org",
"company": {
"name": "Romaguera-Crona",
"catchPhrase": "Multi-layered client-server neural-net",
"bs": "harness real-time e-markets"
}
}
]
Puoi anche verificare il certificato SSL ospitandolo alla tua estremità e fornendo il percorso utilizzando verify param come mostrato di seguito.
Esempio
import requests
getdata =
requests.get('https://jsonplaceholder.typicode.com/users', verify='C:\Users\AppData\Local\certificate.txt')
print(getdata.text)
Produzione
E:\prequests>python makeRequest.py
[
{
"id": 1,
"name": "Leanne Graham",
"username": "Bret",
"email": "[email protected]",
"address": {
"street": "Kulas Light",
"suite": "Apt. 556",
"city": "Gwenborough",
"zipcode": "92998-3874",
"geo": {
"lat": "-37.3159",
"lng": "81.1496"
}
},
"phone": "1-770-736-8031 x56442",
"website": "hildegard.org",
"company": {
"name": "Romaguera-Crona",
"catchPhrase": "Multi-layered client-server neural-net",
"bs": "harness real-time e-markets"
}
}
]