如何使用Perl JIRA::Client::Automated模块连接到HTTPS服务器?
发布于 2014-03-06 19:04:07
提供https URL:
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,或者至少说明你在尝试的时候遇到了什么问题。
https://stackoverflow.com/questions/22222403
复制相似问题