WalletBit/Integrate: Difference between revisions
No edit summary |
No edit summary |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
The following information may no longer be true, WalletBit service was suspended | |||
See https://bitcointalk.org/index.php?topic=249751.new | |||
The article is kept only as historic documentation. | |||
Below you'll find tutorials that will teach you how to use [[WalletBit]] API, and reference documentation for all the moving parts | Below you'll find tutorials that will teach you how to use [[WalletBit]] API, and reference documentation for all the moving parts | ||
Three methods are currently available for integrating to your online shop: | |||
==Create a payment form== | ==Create a payment form== | ||
===If you want to integrate WalletBit | |||
===If you want to integrate WalletBit On-site payment system=== | |||
Copy the following code, then place it immediately before the closing </head> | Copy the following code, then place it immediately before the closing </head> | ||
<source lang="javascript"> | <source lang="javascript"> | ||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> | |||
<script type="text/javascript"> | <script type="text/javascript"> | ||
(function() { | (function() { | ||
var wb = document.createElement('script'); wb.type = 'text/javascript'; wb.async = true; | |||
wb.src = 'https://walletbit.com/pay/01ee1e83d3d38627af1ee8bf88fe8a0c?url=' + escape(parent.location.href); | |||
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wb, s); | |||
})(); | })(); | ||
</script> | </script> | ||
Line 29: | Line 36: | ||
<source lang="html4strict"> | <source lang="html4strict"> | ||
<form method="post" action="https://walletbit.com/ | <form method="post" action="https://walletbit.com/pay"> | ||
<input type="hidden" name="token" value=" | <input type="hidden" name="token" value="01ee1e83d3d38627af1ee8bf88fe8a0c" /> | ||
<input type="hidden" name="item_name" value="Auction Goods" /> | <input type="hidden" name="item_name" value="Auction Goods" /> | ||
<input type="hidden" name="amount" value="0.01000000" /> | <input type="hidden" name="amount" value="0.01000000" /> | ||
Line 36: | Line 43: | ||
<input type="hidden" name="additional" value="wb_1=red|wb_2=green" /> | <input type="hidden" name="additional" value="wb_1=red|wb_2=green" /> | ||
<input type="hidden" name="test" value="0" /> | <input type="hidden" name="test" value="0" /> | ||
<input type="image" src="https://walletbit.com/ | <input type="image" class="walletbitcheckout" src="https://walletbit.com/includes/checkout.png" border="0" name="submit" alt="WalletBit - Simple, Flexible & Secure Bitcoin" title="WalletBit - Simple, Flexible & Secure Bitcoin" /> | ||
</form> | </form><script type="text/javascript" src="https://walletbit.com/scripts/checkout.js"></script> | ||
</source> | |||
===Subscription form=== | |||
<source lang="html4strict"> | |||
<form class="walletbit" method="post" action="https://walletbit.com/checkout/subscribe"> | |||
<input name="token" value="01ee1e83d3d38627af1ee8bf88fe8a0c" type="hidden"> | |||
<input name="item_name" value="Magazine" type="hidden"> | |||
<input name="amount" value="1" type="hidden"> | |||
<input name="period" value="1" type="hidden"> | |||
<input name="cycle" value="M" type="hidden"> | |||
<input name="adjustable" value="1" type="hidden"> | |||
<input name="returnurl" value="" type="hidden"> | |||
<input name="additional" value="" type="hidden"> | |||
<input name="test" value="0" type="hidden"> | |||
<input id="walletbitsubscribe" src="https://walletbit.com/subscribebutton/1" name="submit" alt="WalletBit - Simple, Flexible & Secure Bitcoin" title="WalletBit - Simple, Flexible & Secure Bitcoin" border="0" type="image"></form><script type="text/javascript" src="https://walletbit.com/jq/subscribe"></script> | |||
</source> | </source> | ||
Remember to replace the TOKEN with your own. |
Latest revision as of 16:00, 6 April 2014
The following information may no longer be true, WalletBit service was suspended See https://bitcointalk.org/index.php?topic=249751.new The article is kept only as historic documentation.
Below you'll find tutorials that will teach you how to use WalletBit API, and reference documentation for all the moving parts
Three methods are currently available for integrating to your online shop:
Create a payment form
If you want to integrate WalletBit On-site payment system
Copy the following code, then place it immediately before the closing </head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
(function() {
var wb = document.createElement('script'); wb.type = 'text/javascript'; wb.async = true;
wb.src = 'https://walletbit.com/pay/01ee1e83d3d38627af1ee8bf88fe8a0c?url=' + escape(parent.location.href);
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(wb, s);
})();
</script>
And the following anywhere in your HTML where you want a payment button. Adjust the product name in text and amount in the rel value. You can define where you want to send customers after purchase by editing href value. If you need additional variable place them in target of the a tag splitted by pipe |
<a rel="0.01000000" target="wb_1=red|wb_2=green" test="0" href="https://walletbit.com/" class="WalletBitButton">Auction Goods</a>
You can also build your own payment button, for instance a support button looks like this, notice the class WalletBitButtonCustom
<a rel="0.50" test="0" href="https://walletbit.com/" title="Support this free service" class="WalletBitButtonCustom" >1MrcomYR9JrbeYzyPTCSH9usfAuW5WjtJu</a>
If you want a standard checkout process where customers leave your site and come back once completed
<form method="post" action="https://walletbit.com/pay">
<input type="hidden" name="token" value="01ee1e83d3d38627af1ee8bf88fe8a0c" />
<input type="hidden" name="item_name" value="Auction Goods" />
<input type="hidden" name="amount" value="0.01000000" />
<input type="hidden" name="returnurl" value="https://walletbit.com/" />
<input type="hidden" name="additional" value="wb_1=red|wb_2=green" />
<input type="hidden" name="test" value="0" />
<input type="image" class="walletbitcheckout" src="https://walletbit.com/includes/checkout.png" border="0" name="submit" alt="WalletBit - Simple, Flexible & Secure Bitcoin" title="WalletBit - Simple, Flexible & Secure Bitcoin" />
</form><script type="text/javascript" src="https://walletbit.com/scripts/checkout.js"></script>
Subscription form
<form class="walletbit" method="post" action="https://walletbit.com/checkout/subscribe">
<input name="token" value="01ee1e83d3d38627af1ee8bf88fe8a0c" type="hidden">
<input name="item_name" value="Magazine" type="hidden">
<input name="amount" value="1" type="hidden">
<input name="period" value="1" type="hidden">
<input name="cycle" value="M" type="hidden">
<input name="adjustable" value="1" type="hidden">
<input name="returnurl" value="" type="hidden">
<input name="additional" value="" type="hidden">
<input name="test" value="0" type="hidden">
<input id="walletbitsubscribe" src="https://walletbit.com/subscribebutton/1" name="submit" alt="WalletBit - Simple, Flexible & Secure Bitcoin" title="WalletBit - Simple, Flexible & Secure Bitcoin" border="0" type="image"></form><script type="text/javascript" src="https://walletbit.com/jq/subscribe"></script>
Remember to replace the TOKEN with your own.