I am only using the Stripe plug-in to charge my merchant's customers credit cards, but that's it. Since I'm using Stripe Connect to connect merchants, I need to be able to tokenize each merchants bank account then associate that to their managed Stripe account. This functionality is additional to wh...
Stripe.setPublishableKey('[blankedout]'); var stripeResponseHandler = function(status, response) { var $form = $('#inst-form'); if (response.error) { alert("Error"); // Not sure how to get these errors. $form.find('button').prop('disabled', false); } else { var token = response.id; $form.a...
Here is the HTML code for the form... <!-- The required Stripe lib -- <!-- jQuery is used only for this example; it isn't required to use Stripe -- ').val(token)); console.log(response); } }; // Now the handler is done, lets use it when the form is submitted. // On form submission execute: jQuery(fu...
I am using Stripe.js in an HTML form to obtain a token for user's bank accounts. After the users submit their bank account info inside the HTML form, the token comes back appended to the HTML form. I want to be able to throw the token into an Appery.io label component (or lsv) so that I can save it ...
I am trying to integrate Stripe into my app. Everything works with the test card (....4242) the first time I tried it. However, the second time it starts giving me the following error: You cannot use a Stripe token more than once: tok_15u74HI7YvO9pZpQz4YLEGLw. Could you please help me understand wha...