Bitcoin Forum
April 19, 2024, 06:24:56 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 [4] 5 6 »  All
  Print  
Author Topic: So You Want To Use Bitcoin On Your Website?  (Read 15622 times)
HackerBOSS
Full Member
***
Offline Offline

Activity: 224
Merit: 101


View Profile
April 17, 2016, 08:01:00 AM
 #61

and i have question..

after install bitcoind need create multi sig "createmultisig" for receiving payment?
and what need "key" use?     createmultisig   <nrequired> <'["key,"key"]'>

i ask this question because i sent payment to getnewaddress and balance is 0.. where lost payments?

i don't know how resolve this problem.
need help

Be very wary of relying on JavaScript for security on crypto sites. The site can change the JavaScript at any time unless you take unusual precautions, and browsers are not generally known for their airtight security.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713507896
Hero Member
*
Offline Offline

Posts: 1713507896

View Profile Personal Message (Offline)

Ignore
1713507896
Reply with quote  #2

1713507896
Report to moderator
1713507896
Hero Member
*
Offline Offline

Posts: 1713507896

View Profile Personal Message (Offline)

Ignore
1713507896
Reply with quote  #2

1713507896
Report to moderator
1713507896
Hero Member
*
Offline Offline

Posts: 1713507896

View Profile Personal Message (Offline)

Ignore
1713507896
Reply with quote  #2

1713507896
Report to moderator
coinableS (OP)
Legendary
*
Offline Offline

Activity: 1442
Merit: 1179



View Profile WWW
April 17, 2016, 03:20:52 PM
 #62

and i have question..

after install bitcoind need create multi sig "createmultisig" for receiving payment?
and what need "key" use?     createmultisig   <nrequired> <'["key,"key"]'>

i ask this question because i sent payment to getnewaddress and balance is 0.. where lost payments?

i don't know how resolve this problem.
need help


Payment is not lost. Your balance will remain zero until your node has reached and validated the block that transaction is in and is fully synced. Since you only started ~ 9 hours ago your node is still syncing and validating, it took mine about 14 hours to fully sync.   If you can do getinfo like you mentioned before, try it again and see what block your node is at. Our current block height is at 407720.

HackerBOSS
Full Member
***
Offline Offline

Activity: 224
Merit: 101


View Profile
April 18, 2016, 07:04:37 AM
 #63

How make that script (wallet notify) count confirm?

i need add info to mysql after 3 confirmation..

thanks

coinableS (OP)
Legendary
*
Offline Offline

Activity: 1442
Merit: 1179



View Profile WWW
April 18, 2016, 12:14:15 PM
 #64

Wallet notify will trigger twould times. Once when the TX is first seen, and again after first confirmation. If you are looking for 3 you will need to program it manually.

HackerBOSS
Full Member
***
Offline Offline

Activity: 224
Merit: 101


View Profile
April 18, 2016, 01:19:55 PM
 #65

Wallet notify will trigger twould times. Once when the TX is first seen, and again after first confirmation. If you are looking for 3 you will need to program it manually.

ok. i will create php script.
but where setup my callback.php? (similar blockchain.info)

can make similar callback blockchain api v2?

HackerBOSS
Full Member
***
Offline Offline

Activity: 224
Merit: 101


View Profile
April 21, 2016, 02:15:22 AM
 #66

i use gettransaction($txid);

how get my wallet address for receiving? (this method get payer wallet address only)

coinableS (OP)
Legendary
*
Offline Offline

Activity: 1442
Merit: 1179



View Profile WWW
April 21, 2016, 12:46:43 PM
 #67

i use gettransaction($txid);

how get my wallet address for receiving? (this method get payer wallet address only)

If gettransaction isn't showing you enough info you could use getrawtransaction instead and pick out what you need from the inputs/outs.

Code:
getrawtransaction($txid, 1);

grey_net
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
June 07, 2016, 09:12:59 PM
 #68

So we're all at least somewhat techy if we're into bitcoin, but that doesn't mean we all know how to code like a pro.
I believe there is a serious lack of tutorials and step-by-step walk throughs available in the bitcoin ecosystem.

I want to use visual basic .NET (but 2.0), and I find that there are so many endless tutorials on using python and also for C#. But since I'm a big fan of visual basic .NET, I find that its impossible to find guides to do almost anything.

I'm mostly interested in trying to make a raw transaction as a nice challenge, but also sometime maybe begin a project of building a desktop wallet in .NET, or better yet, an open source .NET library on github for versions below 4.0.   Cheesy

It is of course a little bit easier in .NET4.0, as it has many of those bitcoin related crypto functions like BigIntegers, RIPEMD160, ECDSA calculation etc, but i would prefer trying to make it in .NET 2.0 as this way I'm having most of the tools to converting the code to a VB clone with multiOS compiling.  Smiley
cloverme
Legendary
*
Offline Offline

Activity: 1512
Merit: 1054


SpacePirate.io


View Profile WWW
June 08, 2016, 12:33:11 PM
 #69

So we're all at least somewhat techy if we're into bitcoin, but that doesn't mean we all know how to code like a pro.
I believe there is a serious lack of tutorials and step-by-step walk throughs available in the bitcoin ecosystem.

I want to use visual basic .NET (but 2.0), and I find that there are so many endless tutorials on using python and also for C#. But since I'm a big fan of visual basic .NET, I find that its impossible to find guides to do almost anything.

I'm mostly interested in trying to make a raw transaction as a nice challenge, but also sometime maybe begin a project of building a desktop wallet in .NET, or better yet, an open source .NET library on github for versions below 4.0.   Cheesy

It is of course a little bit easier in .NET4.0, as it has many of those bitcoin related crypto functions like BigIntegers, RIPEMD160, ECDSA calculation etc, but i would prefer trying to make it in .NET 2.0 as this way I'm having most of the tools to converting the code to a VB clone with multiOS compiling.  Smiley

So, a few years ago, I moved from vb to c# and never looked back. Don't let c# push you away, I have a couple of recommendations for you if you ever want to switch:
C# & VB.NET Conversion Pocket Reference By Jose Mojica
Build Your Own ASP.NET 4 Web Site Using C# & VB, 4th Edition
Check out George Kimionis's Bitcoin Library for .net - https://github.com/GeorgeKimionis/BitcoinLib

That being said, designing a good web application these days is very difficult in .net, at least up to VS 2013. I haven't tried the later version yet. There's a lack of a good IDE that welds dynamic client facing code (jquery, ajax, etc) with server side code unless you use expensive add-ons (telerik, etc).
TheBarMan
Full Member
***
Offline Offline

Activity: 140
Merit: 100

DEGEN Future Traders


View Profile
June 09, 2016, 11:08:09 PM
 #70

thanks a lot for this info my friend, is very important to me.

Have a nice day.
TheBarMan
Full Member
***
Offline Offline

Activity: 140
Merit: 100

DEGEN Future Traders


View Profile
June 12, 2016, 07:17:23 AM
Last edit: June 12, 2016, 08:01:27 AM by TheBarMan
 #71

Hi my friend, thanks for the manual...

Maybe is time to updete the API blockchain part because this section has change.

Obviously we have to read the new changes and create the things in a new way.

But if you want your beautiful manual up to date, maybe is a good idea that you do it.

Thanks again, im working step by step with your manual and start to jump when the BTC price appears in the page...

hehehe

Cheers

I saw the update in the videos section after write this, im sorry.
coinableS (OP)
Legendary
*
Offline Offline

Activity: 1442
Merit: 1179



View Profile WWW
August 16, 2016, 03:32:08 AM
 #72

UPDATE:

The Building Bitcoin Websites Book is now available on Amazon!

https://www.amazon.com/Building-Bitcoin-Websites-Beginners-Development/dp/153494544X

This is the thread started it all. It's taken an entire year but I've finally finished my book!

If you liked my tutorials take it a step further and check out my new book, Building Bitcoin Websites: A Beginner's Guide To Bitcoin Focused Web Development. Learn to become a full stack developer while leveraging the use of Bitcoin integration. Take your ideas and turn them into completed working websites!



drakker
Sr. Member
****
Offline Offline

Activity: 303
Merit: 250



View Profile
August 18, 2016, 09:52:24 AM
 #73

Thanks for this thread. I'm planning to make a website of mine and I need some of this tutorials. Kudos to you bro. You did a good job here.
tobasco
Member
**
Offline Offline

Activity: 61
Merit: 12


View Profile WWW
August 19, 2016, 01:07:22 PM
 #74

Awesome, just ordered the book.

Thanks for everything Kyle.

coinableS (OP)
Legendary
*
Offline Offline

Activity: 1442
Merit: 1179



View Profile WWW
August 20, 2016, 12:10:44 AM
 #75

Awesome, just ordered the book.

Thanks for everything Kyle.

Very cool! Once you get it please consider leaving a review on Amazon. Reviews really help the book rankings  Grin

StarofBTC
Hero Member
*****
Offline Offline

Activity: 1148
Merit: 528



View Profile
August 20, 2016, 04:46:26 AM
 #76

So many appreciations for your work coinableS.. and congrats for your new book.. I want to buy it.

Awesome, just ordered the book.

Thanks for everything Kyle.

Very cool! Once you get it please consider leaving a review on Amazon. Reviews really help the book rankings  Grin
I want to buy the book for Bitcoin. why don't you add your book in a bitcoin marketplace instead of amazon which don't accept bitcoin?
It doesn't mean I have any issue that you added the book in amazon, it is fine. but I think you should add this for bitcoin too. (If it is added and I don't know please provide me link/detail)
fikihafana
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250



View Profile
August 21, 2016, 03:04:52 AM
 #77

So we're all at least somewhat techy if we're into bitcoin, but that doesn't mean we all know how to code like a pro.
I believe there is a serious lack of tutorials and step-by-step walk throughs available in the bitcoin ecosystem.

I can google "how to light my fart on fire" and find endless videos available. There's even a wikipedia page dedicated to it (http://en.wikipedia.org/wiki/Fart_lighting). This is a serious issue that such a ridiculous topic can have so many resources, but something as serious as integrating and building bitcoin websites does not. I know there are a lot of knowledgeable coders out there that know how to make cool bitcoin related websites, but for some reason no one is making tutorials.

Since I began working with bitcoin related websites mid last year I ran into lots of hurdles and I have compiled what I have learned into some step by step videos and written tutorials.

I know I'm not the greatest coder and there are probably better ways to do the things I demonstrate, but as I stated previously I only created these because they don't exist already and I wish they did when I was getting started. If you think I missed something crucial I advise you to create something better because it's something that the community could really use.

==========
My Book: Building Bitcoin Websites
==========

So You Want To Use Bitcoin On Your Website?

Goto my youtube channel to see all videos

Written Lessons:
Table of Contents
Lesson 1 - Intro into Bitcoin
Lesson 2 - Intro to Web Wallets
Lesson 3 - Intro to PHP and JSON
Lesson 4 - More PHP and JSON
Lesson 5 - API
Lesson 6 - PROJECT - Create a simple bitcoin webstore
Bitcoin and Websocket - Real-Time Live Transactions
Chain.com API - Create a Address & Transaction Browser
How to use blockchain's new receive payments API with PHP & cURL
How to use blockchain's new Blockchain Wallet API V2
Intro Bitcoin JavaScript Tutorials


Video Lessons:
Lesson 1 - Intro into Bitcoin
Lesson 2 - Intro to Web Wallets
Lesson 3 - Intro to PHP and JSON
Lesson 4 - More PHP and JSON
Lesson 5 - API
Lesson 6 - PROJECT - Create a simple bitcoin webstore
How To Create Dynamic Bitcoin URIs
How To Use Blockchain.info Receive Payments API Deprecated as of Dec 7th 2015, see new version
Bitcoin and Websocket - Real-Time Live Transactions
How To Easily Query Bitcoin Blockchain Stats with Blockchain.info API
How To Create A Bitcoin Address Validation Form
How to use blockchain's new receive payments API with PHP & cURL
How to use Block.IO API to integrate bitcoin payments on your website
How to use Blockchain Wallet Service API V2
Programming a simple bitcoin trading bot with bitfinex API
How to build your first Bitcoin Chrome Extension
How to build a Bitcoin Mining Calculator in PHP
Blockchain WebSocket using Javascript


Building a Bitcoin Address Browser with Chain.com API:
Videos:
Building a Bitcoin Address Browser
Building a Bitcoin Address Browser 2
Building a Bitcoin Address Browser 3
Building a Bitcoin Address Browser 4
Example code basic: http://pastebin.com/s2RndVpy
2nd Example using curl. Also using $_GETs to turn each address into a link : http://pastebin.com/GJQXcVck

Bitcoind and JSON-RPC API
1. Intro - https://www.youtube.com/watch?v=cMM-t7azzJE
2. Setting up on a VPS - https://www.youtube.com/watch?v=ygNit44dQHA
3. Customize the bitcoin.conf - https://www.youtube.com/watch?v=W54aRszkEOI
4. Testing with bitcoin command line interface - https://www.youtube.com/watch?v=vmdYD7vutTI
5. Your first JSON-RPC calls - https://www.youtube.com/watch?v=ARL_PvDEBtU
6. More JSON-RPC calls - https://www.youtube.com/watch?v=FyLCKMqkWIA
7. Wallet Notify - https://www.youtube.com/watch?v=o4BPt4RXOm4

Building Bitcoin Websites:
Some older videos. This is where I started...
The videos are less structured but still useful.

PLAYLIST: Building Bitcoin Websites
Contents:
How to get the Price
Create a BTC/USD Converter
Using Blockchain.info API
Building A Bitcoin Faucet

Again, I know these aren't the best but it's a start in a world without walkthrough tutorials for building bitcoin related websites.
 Cool
==========
EDIT: 3/22/15
Updated: tinyStore files to include basic form validation and integrated bitcoin client URI during the purchase.
Added New Video: How To Create Dynamic Bitcoin URIs

EDIT: 4/1/15
Added New Video: How To Use Blockchain.info Receive Payments API

EDIT: 5/8/15
Added Video and Written Lesson on websocket.
Lesson: Bitcoin and Websocket - Real-Time Live Transactions
Video: Bitcoin and Websocket - Real-Time Live Transactions

EDIT: 5/25/15
Chain.com API
Videos:
Building a Bitcoin Address Browser
Building a Bitcoin Address Browser 2
Building a Bitcoin Address Browser 3
Building a Bitcoin Address Browser 4

EDIT: 8/1/2015
My tutorials have now been featured on Blockchain's blog!
http://blog.blockchain.com/2015/07/30/building-bitcoin-websites-using-the-blockchain-api-video-tutorial/

EDIT: 10/17/2015
How To Create A Bitcoin Address Validation Form

EDIT: 11/18/2015
2nd Feature article on blockchain.info's blog
https://blog.blockchain.com/2015/11/18/using-the-blockchain-api-to-determine-the-time-left-until-the-next-bitcoin-block-halving/

EDIT: 12/4/2015
Written: How to use blockchain's new receive payments API with PHP & cURL
Video: How to use blockchain's new receive payments API with PHP & cURL

EDIT: 1/3/2016
Video: How to use Block.IO API to integrate bitcoin payments on your website

EDIT: 4/13/2016
Added a video series on bitcoind JSON-RPC API usage.
https://www.youtube.com/watch?v=cMM-t7azzJE&index=27&list=PLhWIQKZKupCYEPtkR8sPLRJ5VDu8NepcV

EDIT: 5/5/2016
How to build your first Bitcoin Chrome Extension
https://www.youtube.com/watch?v=lWC6E7175I8

EDIT: 5/25/2016
How to build a Bitcoin Mining Calculator in PHP
https://www.youtube.com/watch?v=iMuwInCCIYw

EDIT: 7/2/2016
Since I do so much with PHP, I added some simple introduction Bitcoin JavaScript tutorials
https://coinables.github.io

EDIT: 8/15/2016
Added a video on Blockchain WebSocket using Javascript
https://www.youtube.com/watch?v=55xvr2oqMdk
[/quote]

thanks for provide tutorial link, i would help me to improve my wallet. here is mine http://application.id
John Constantine
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
August 21, 2016, 04:05:46 AM
 #78

Great, good to be aware of it.
Galer
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


FameCoin, Viral Photo sharing on Blockchain


View Profile
August 21, 2016, 05:36:12 AM
 #79

Wow this is what are looking for add Bitcoin in my website.Very helpful tutorial and well-explained videos.And now im start to add bitcoin as payment processor in my friend website.Thank you.
crunck
Legendary
*
Offline Offline

Activity: 1176
Merit: 1005


crunck


View Profile
October 24, 2016, 08:56:17 PM
 #80

Wow what a great thread, and well done every one that contributes to it ....

.
.7 BTC  WELCOME BONUS!..
███████████████████████████
██████████▀▀▄▄▄▄▄ ▄▀▀██████
█████████▄██████ ████ ▀████
██████▀▀ ▄▄▄▄ ▀▀███▀▄██ ███
████▀   ██████   ▀██████ ██
███ ▄▄▄████████▄▄▄ ██▄▄▄ ██
██ █████▀    ▀█████ ████ ██
██  ▀██        ███▀ ███ ███
██   ▄██▄    ▄██▄   █▀▄████
███ ▄████████████▄ ████████
████▄▀███▀▀▀▀███▀▄█████████
██████▄▄      ▄▄███████████
███████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████▄▄▄█████▄▄▄████████████████████████████████████████████████████
██████████▄█████▄█▄███▄█▄██████████▄██▀▀▀████████████████████████████████████████████████████
██████████████▀████▄████▀██████████████████████████▄█████▄██▄█████▄████▄████▄████▄████████
█████████████████▐█████▌███████████▄█████▀███▀▀████████▀▀▀▀█████▀▀▀██████▀▀███▀▀███████████
██████████████▄████▀████▄██████████████████▄▄▄▄▄███▄▄▄▄█████▄▄▄████████████████████████
████████████████▀█▀███▀█▀██████████▀███████▀█████████▀█████▀██▀█████▀███████████████████████
██████████████████████████████▀▀▀████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████
███████████████████████████
████████▀▀  ▐█▌  ▀▀████████
██████▄     ▐█▌     ▄██████
████ ▀██▄▄███████▄▄██▀ ████
███    ██▀▀  ▄  ▀▀██    ███
██    ██   ▄███▄   ██    ██
████████  ███████  ████████
██    ██  ▀▀ █ ▀▀  ██    ██
███    ██▄▄ ▀▀▀ ▄▄██    ███
████ ▄██▀▀██████▀▀▀██▄ ████
██████▀     ▐█▌     ▀██████
████████▄▄  ▐█▌  ▄▄████████
███████████████████████████
.
.30+  ALTCOINS AVAILABLE..
Pages: « 1 2 3 [4] 5 6 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!