Skip Menu |

This queue is for tickets about the Finance-Card-Discover CPAN distribution.

Report information
The Basics
Id: 122502
Status: new
Priority: 0/
Queue: Finance-Card-Discover

People
Owner: Nobody in particular
Requestors: ctl [...] me.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Can't connect to deskshop.discovercard.com
Date: Sat, 15 Jul 2017 22:52:09 -0400
To: bug-Finance-Card-Discover [...] rt.cpan.org
From: Charles Loflin <ctl [...] me.com>
Hello, Thank you for your volunteer work. I want to use the module Finance::Card::Discover to help in pulling transaction data from Discover. I am using the 0.05 version of the module, and v5.18.2 of perl on a Linux (Ubuntu) system. I’m afraid the module isn’t working due to a URI no longer being valid. When I tried to pull my transactions, none were returned. The status_line of the request was: 500 Can't connect to deskshop.discovercard.com:443. Is there a different URI that should be used? I was attempting to use this code: #!/usr/bin/perl use strict; use Finance::Card::Discover; my $card = Finance::Card::Discover->new( username => ‘my userId', password => ‘my password', ); my $accounts = $card->accounts(); my $response = $card->response(); if ($response->is_success) { print $response->decoded_content; } else { print "unsucessful\n"; print $response->status_line, "\n"; } Any help that could be provided would be appreciated. Thanks Charles