stripe-perl icon indicating copy to clipboard operation
stripe-perl copied to clipboard

Perl library to connect to the Stripe API

Results 30 stripe-perl issues
Sort by recently updated
recently updated
newest added

Work around provided for Ubuntu 20.04, installing Alt::Devel::CallParser::ButWorking fails. cpanm Net::Stripe reports --> Working on Net::Stripe Fetching http://www.cpan.org/authors/id/S/SH/SHERRARDB/Net-Stripe-0.42.tar.gz ... OK Configuring Net-Stripe-0.42 ... OK Building and testing Net-Stripe-0.42 ... FAIL...

Getting these errors when I try to install this module. Please tell me what I need to do to correct this. bill ... Manifying 23 pod documents SHERRARDB/Net-Stripe-0.42.tar.gz /usr/bin/make --...

It'd be nice to have support for plan tiers in the plans object. https://stripe.com/docs/api/plans See also #204

future enhancement

The `plans` APIs are being superseded by the the `prices` APIs, best I can tell: https://stripe.com/docs/api/prices

future enhancement

Hey there. Hope everyone is well. Just wanted to confirm that there is no support yet for the Connect-related API. Is that right? For example, creating an Account along with...

future enhancement

Hi, Great module. Are we able to use sessions? https://stripe.com/docs/api/checkout/sessions/object Cheers Andy

future enhancement

`GET https://api.stripe.com/v1/customers/cus_GtHh3VC7Hhwgkc` for a non-existent customer produces: ``` { "error": { "code": "resource_missing", "doc_url": "https://stripe.com/docs/error-codes/resource-missing", "message": "No such customer: cus_GtHh3VC7Hhwgkc", "param": "id", "type": "invalid_request_error" } } ``` but the stringified...

the [API docs](https://stripe.com/docs/api/payment_intents/list#list_payment_intents-created) indicate `created` as a hashref, so we should be using `HashRef[Int] :$created?,`

similar to the test currently local.t ``` my $false = bless( do{\(my $o = 0)}, 'JSON::PP::Boolean' ); my $DATA = { 'client_ip' => '138.197.111.110', 'object' => 'token', 'type' => 'card',...

ongoing

in some methods we `_post()` passed arguments directly: https://github.com/lukec/stripe-perl/blob/646861d829729d6d2c649ae1b426618d50f84914/lib/Net/Stripe.pm#L481-L492 but in doing so, we are unable to take advantage of any magic that happens during objectification: https://github.com/lukec/stripe-perl/blob/646861d829729d6d2c649ae1b426618d50f84914/lib/Net/Stripe/Resource.pm#L22-L26 and therefore have...

ongoing