in reply to JIRA::Client returning "RemoteIssue=HASH(******)"
Try it this way:
If that doesn't clarify things for you, reply back here with the result.#!/usr/bin/perl use strict; use warnings; use Data::Dumper; use LWP::UserAgent; use JIRA::Client; use SOAP::Lite; my $user = 'username'; my $pw = 'password'; my $filterID = '12345'; my $jira=JIRA::Client->new('http://example.com/jira',$user,$pw); $jira->set_filter_iterator('$filterID'); while (my $issue = $jira->next_issue()) { print Dumper($issue); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: JIRA::Client returning "RemoteIssue=HASH(******)"
by perlPractioner (Novice) on Dec 03, 2011 at 16:33 UTC | |
by keszler (Priest) on Dec 03, 2011 at 19:58 UTC |