如何使用Perl JIRA::Client::Automated
模块连接到HTTPS服务器?
答案 0 :(得分:0)
提供https网址:
use strict;
use warnings
use JIRA::Client::Automated;
my $user = 'foo';
my $pass = 'bar';
my $url = 'https://xxx.yyy';
my $jira = JIRA::Client::Automated->new($url, $user, $pass);
请考虑阅读documentation,或者至少说明您尝试时遇到的问题。