JIRAPy Documentation 0.1.0
JIRAPy Documentation Advanced Self-Signed SSL Certificates
Self-Signed SSL Certificates
The option to turn off SSL Verification is included in the JIRAPy wrapper for the comments feature, as well as the remote API wrapper. When you create the JiraTicket object, set the optional verifyssl
parameter to False
:
ticketdata = get_ticket("https://neko-design.jira.com/api/rest/2/issue/jirapy-1")
jiraticket = JiraTicket(ticketdata, False)
# Or with a Named Parameter
jiraticket = JiraTicket(ticketdata, verifyssl=False)