You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Usando il comando update_idps il metada di poste.it non viene scaricato a causa di un errore 403 Forbidden.
Per ovviare al problema cambiare questa linea di codice: with requests.get(idp_metadata_url, verify=True) as response:
con: with requests.get(idp_metadata_url, verify=True, headers={'User-Agent': ''}) as response:
The text was updated successfully, but these errors were encountered:
Usando il comando update_idps il metada di poste.it non viene scaricato a causa di un errore 403 Forbidden.
Per ovviare al problema cambiare questa linea di codice:
with requests.get(idp_metadata_url, verify=True) as response:
con:
with requests.get(idp_metadata_url, verify=True, headers={'User-Agent': ''}) as response:
The text was updated successfully, but these errors were encountered: