Comments on: Stripe Plugin for Corona SDK https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/ Thu, 27 Dec 2018 22:23:25 +0000 hourly 1 By: Jason https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-27961 Sat, 30 Dec 2017 15:56:43 +0000 http://www.jasonschroeder.com/?p=198#comment-27961 In reply to Massimiliano.

Hi Massimiliano,

I was unable to reproduce the issue you reported. I successfully made a test transaction using 4242424242424242 – but in any case, the plugin worked as expected if you received a response from Stripe’s servers. The plugin simply sends and receives data from Stripe, so if the response is not as expected, you’d need to take it up with them, I’m afraid.

]]>
By: Massimiliano https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-27957 Thu, 28 Dec 2017 17:30:19 +0000 http://www.jasonschroeder.com/?p=198#comment-27957 Hi. I’m using your plugin. While testing I use card 4242424242424241and receive correct error message (“Invalid card number”), but all other test card for error checking (ex. 4000000000000119, 0069, 0127) give success result

]]>
By: Giorgio Sanfilippo https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26609 Thu, 26 Jan 2017 10:26:55 +0000 http://www.jasonschroeder.com/?p=198#comment-26609 In reply to Jason.

Hi Jason,
thank you for your quick answer

I did the feature request to Corona, I hope they will upgrade their API.

Thank you
Giorgio

]]>
By: Jason https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26603 Wed, 25 Jan 2017 19:51:04 +0000 http://www.jasonschroeder.com/?p=198#comment-26603 In reply to Giorgio Sanfilippo.

Hi Giorgio,

Unfortunately this isn’t something I’d be able to do directly in the plugin, at least not that I am aware of. The plugin is coded purely in Lua, and makes use of Corona’s built-in network.request() API for all network calls. To support this, you’d need to make sure that Corona updates their APIs to force TLS 1.2 compliance in earlier versions of Android.

You may want to open up a feature request at http://feedback.coronalabs.com. Hope that helps!

]]>
By: Giorgio Sanfilippo https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26602 Wed, 25 Jan 2017 19:42:40 +0000 http://www.jasonschroeder.com/?p=198#comment-26602 Hi Jason,
really great job 😉

I really appreciate your work, thank you a lot .

Actually I’m facing a problem.
In the last month, Stripe is deprecating the TSL 1.0 and 1.1 and they are accepting TSL 1.2 only for security reasons

The problem it’s that Android OS before 5.0, not enable by default TLS 1.2 (although it’s already supported)

Can we force in any way the use of the TLS 1.2 with your plugin (I have seen there are some ways to do that in java)

Thank you in advance for your help

]]>
By: Buddy https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26461 Tue, 23 Aug 2016 02:01:18 +0000 http://www.jasonschroeder.com/?p=198#comment-26461 Hey Jason,

First of all, killer work on the module. I can always count on you to make something that I need, kudos to you sir. Second, are there any plans on integrating stripe-connect?

Cheers,

]]>
By: Jason https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26441 Thu, 28 Jul 2016 04:11:07 +0000 http://www.jasonschroeder.com/?p=198#comment-26441 In reply to Jason.

@Kevin: I’m not able to replicate the issue, at least in the Corona simulator. Are you seeing this in the simulator or only on device? What OS are you running it on (Windows Simulator / OS X Simulator / iOS / Android)? Also, please download the latest daily build from Corona Labs first and confirm you are still seeing that error after doing so. Thanks!

]]>
By: Jason https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26440 Wed, 27 Jul 2016 21:57:45 +0000 http://www.jasonschroeder.com/?p=198#comment-26440 In reply to Jason.

Thanks Kevin. At least it’s working, but I’ll do some digging and see if I can eliminate that error message. CoronaLabs changed the way they distribute plugins in the last week or so, which could be part of the issue? Stay tuned.

]]>
By: Kevin https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26439 Wed, 27 Jul 2016 21:46:22 +0000 http://www.jasonschroeder.com/?p=198#comment-26439 In reply to Jason.

No, I only require plugin.stripe. Your demo project throws the same error without any changes from me. But as I said, it appears to be working…

]]>
By: Jason https://www.jasonschroeder.com/2016/02/22/stripe-plugin-for-corona-sdk/#comment-26438 Wed, 27 Jul 2016 20:58:51 +0000 http://www.jasonschroeder.com/?p=198#comment-26438 In reply to Kevin.

Hi Kevin,

It looks like you attempted to require a plugin specifically for stripe.checkout, which would cause that warning.

At any point in your code do you include require(“plugin.stripe.checkout”)? If so, that’s your problem. There is no “plugin.stripe.checkout” – just “plugin.stripe” – remove any attempt to require anything besides “plugin.stripe” and you should be good to go.

]]>