Last active
August 29, 2015 14:05
-
-
Save matthewarkin/ae42096b10c5e61da68d to your computer and use it in GitHub Desktop.
Stripe Billing and Shipping Address
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
stripeToken: tok_14QSDT2BnSLXc1GoU6JR4ZoX | |
stripeTokenType: card | |
stripeEmail: [email protected] | |
stripeBillingName: Matthew Arkin | |
stripeBillingAddressLine1: 123 Main St | |
stripeBillingAddressApt: | |
stripeBillingAddressZip: 94105 | |
stripeBillingAddressCity: San Francisco | |
stripeBillingAddressState: CA | |
stripeBillingAddressCountry: United States | |
stripeBillingAddressCountryCode: US | |
stripeShippingName: Matthew Arkin | |
stripeShippingAddressLine1: 123 Main St | |
stripeShippingAddressApt: | |
stripeShippingAddressZip: 94105 | |
stripeShippingAddressCity: San Francisco | |
stripeShippingAddressState: CA | |
stripeShippingAddressCountry: United States | |
stripeShippingAddressCountryCode: US |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://checkout.stripe.com/checkout.js"></script> | |
<form action="/charge" method="POST"> | |
<script | |
src="https://checkout.stripe.com/checkout.js" class="stripe-button" | |
data-key="pk_test_i2txBI2jUjSQIMoqFz3Fo326" | |
data-image="https://stripe.com/img/documentation/checkout/marketplace.png" | |
data-name="Matt's Widgets and Gizmos" | |
data-description="2 widgets ($20.00)" | |
data-amount="2000" | |
data-billingAddress="true" | |
data-shippingAddress="true"> | |
</script> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment