一个朋友和我说起YOYOW,想让我帮他写个小程序,咦,YOYOW,说起来好像是上个世纪的事情了呢,当年号称要做区块链版的区块链版知乎+简书+今日头条。  (图源 :[pixabay](https://pixabay.com/)) 当年YOYOW也甚是火爆过一阵,有无数个Q群/微信群,我记得还有个网站叫做币问,去上边提问或者回到问题就可以赚到YOYO币,我还在上边赚过几百个币呢。不过币问好像已经关站了,唉,我也不知道我在里边还有有没有积分啥的了,亏啊。 看了一下,YOYOW的官网还在、主网还在、github上也有更新,说明团队在做事,这还是比较难得的。唉,扯远了,本文主要是学API,不谈别的啦。 从YOYOW官网开发者文档中,可以了解到,YOYOW有两大类API: * 节点API (Node API) * 钱包API (Wallet API) 我记得以前在bitshares网站上看到过一个API工作的流程图,放在YOYOW上一样适用: > 那个Withdraw API,我觉得是书写错误,应该是Wallet API,除了能处理查询等操作外,还能处理转账啊、投票之类的需要权限才能完成的操作。 其实钱包API也是通过和Node API (Blockchain API)打交道来完成相关操作的。所以理论上,我们也可以通过Node API 实现转账、投票等诸如此类需要授权的操作,只是这样需要我们自己组成交易数据、序列化、签名、广播,相对而言比较复杂。 今天我们先来学习Node API,从文档中得知,有两种连接方法: * 使用websocket接口 * 使用HTTP/HTTPS接口(JSON-RPC) 我比较喜欢使用HTTP/HTTPS接口(JSON-RPC),使用websocket接口大家可以自行查看文档。 以最简单的获取`get_accounts_by_uid`为例,官方给的示例如下: >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": [0, "get_accounts_by_uid", [["250926091"]]], "id": 1}' https://api.testnet.yoyow.org/rpc` 很可惜的是,官方的测试节点貌似不工作了。于是我自己跑了一个节点,开启了RPC服务,然后测试一下: >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": [0, "get_accounts_by_uid", [["250926091"]]], "id": 1}' http://127.0.0.1:8091/rpc` 得到如下结果: >`{"id":1,"jsonrpc":"2.0","result":[null]}` 这说明API的调用什么的都没问题,但是这个用户ID(UID)并不存在,也不知道是做文档时特意选了个不存在的id。从最近交易中找了个uid试试。 >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": [0, "get_accounts_by_uid", [["316238807"]]], "id": 1}' http://127.0.0.1:8091/rpc` 返回结果比较乱,整理一下之后是这个样子: > 这个貌似是个交易所账户哦,我们来看看它里边有多少钱: >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": [0, "get_account_balances", ["316238807", [0]]], "id": 1}' http://127.0.0.1:8091/rpc` 返回信息如下: >`{"id":1,"jsonrpc":"2.0","result":[{"amount":"7685480975225","asset_id":0}]}` 其中的零代表核心资产,精度是到小数点后五位,所以就是有`76854809.75225 `这么多代币,哇,一笔巨款哦。 尽管,官方网站的开发者文档以及github上的WIKI文档中已经列出一些API,但是好像并不完整,比如说我常用的`get_block`以及`get_dynamic_global_properties`啥的,文档中都没有介绍。 所以要看完整的API列表还得去看代码,比如查看`database_api.hpp`列出的API,同时也可以查看相应的参数信息等等。这样我们就有大把的API可用了。 比如说,我们可以用`get_block`来查看一下创世块: >`curl --data '{"jsonrpc": "2.0", "method": "call", "params": [0, "get_block", [1]], "id": 1}' http://127.0.0.1:8091/rpc` 结果如下: > 所以,其实YOYOW的API与HIVE的并无太大区别,其实它们都是从Bitshares发展出来的,有相同的血缘。这样也好,至少学习起来,难度低了好多呢。 # 相关链接 * https://www.yoyow.org/ * https://www.yoyow.org/developer.html * https://explorer.yoyow.org/ * https://wiki.yoyow.org/zh/latest/api/node_api.html * https://github.com/yoyow-org/yoyow-core
author | oflyhigh |
---|---|
permlink | yoyow-api-node-api |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","yoyow"],"image":["https://images.hive.blog/DQmUfUDd4SaEh5jnbFuxFYjJcujkFTpvCGtYET6BSLWUp3z/image.png","https://images.hive.blog/DQma4gYJxGTQQaV3DTNDCn8AVxeu1QDZv7Y6guWD9S3Cz17/image.png","https://images.hive.blog/DQmZszg7pxxBGudSxvgvi5wi7fFWzrxury4p9e4YqZohN1Y/image.png","https://images.hive.blog/DQmYMgk1pSrcXUuvggCAE1BEVAVYwL1Jycncj4SfdowitBT/image.png"],"links":["https://pixabay.com/"],"app":"hiveblog/0.1","format":"markdown"} |
created | 2022-03-10 09:01:36 |
last_update | 2022-03-10 09:01:36 |
depth | 0 |
children | 5 |
last_payout | 2022-03-17 09:01:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 57.838 HBD |
curator_payout_value | 57.761 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,794 |
author_reputation | 6,305,264,320,471,838 |
root_title | "学习使用YOYOW的API (Node API)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,191,787 |
net_rshares | 111,005,155,059,176 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
abit | 0 | 26,282,251,247,354 | 100% | ||
adm | 0 | 25,900,359,185,010 | 100% | ||
gerber | 0 | 14,878,412,513 | 9% | ||
daan | 0 | 51,840,427,763 | 8% | ||
ezzy | 0 | 544,408,636 | 9% | ||
deanliu | 0 | 3,166,815,774,914 | 100% | ||
exyle | 0 | 81,079,588,991 | 9% | ||
joythewanderer | 0 | 31,454,471,856 | 100% | ||
lemooljiang | 0 | 2,801,025,960 | 100% | ||
ace108 | 0 | 933,150,908,558 | 26% | ||
logic | 0 | 171,429,237,161 | 100% | ||
magicmonk | 0 | 2,627,370,049,741 | 100% | ||
laoyao | 0 | 56,836,758,017 | 100% | ||
midnightoil | 0 | 199,939,687,818 | 100% | ||
xiaohui | 0 | 17,905,418,631 | 100% | ||
joele | 0 | 416,711,822,481 | 100% | ||
oflyhigh | 0 | 4,127,498,680,728 | 100% | ||
rivalhw | 0 | 2,370,021,090,101 | 100% | ||
nextgen622 | 0 | 634,912,276,244 | 100% | ||
helene | 0 | 1,147,233,480,024 | 100% | ||
ethansteem | 0 | 100,735,294,165 | 100% | ||
penguinpablo | 0 | 288,024,132,856 | 12% | ||
ivet | 0 | 89,799,623,580 | 100% | ||
ebargains | 0 | 680,953,945 | 2.25% | ||
cnfund | 0 | 87,210,911,722 | 50% | ||
funnyman | 0 | 1,084,902,567 | 4.8% | ||
steemcleaners | 0 | 1,786,089,682,550 | 60% | ||
btshuang | 0 | 746,785,498 | 50% | ||
planosdeunacasa | 0 | 856,873,358 | 9% | ||
azazqwe | 0 | 24,333,346,880 | 100% | ||
newhope | 0 | 4,129,955,435,769 | 38% | ||
lucknie | 0 | 129,838,445 | 100% | ||
dumping | 0 | 98,220,250 | 100% | ||
bxt | 0 | 238,186,716,551 | 100% | ||
lingfei | 0 | 0 | 100% | ||
privex | 0 | 19,657,175,796 | 18% | ||
justinashby | 0 | 4,643,474,821 | 100% | ||
trafalgar | 0 | 23,985,886,994,677 | 58% | ||
itinerantph | 0 | 609,533,029 | 29% | ||
raindrop | 0 | 403,829,787,893 | 58% | ||
passion-fruit | 0 | 9,888,193,229 | 100% | ||
fortune-master | 0 | 9,561,355,660 | 100% | ||
iansart | 0 | 32,366,353,893 | 9% | ||
nanosesame | 0 | 427,003,646,401 | 80% | ||
exec | 0 | 306,092,471,598 | 100% | ||
joeyarnoldvn | 0 | 599,741,102 | 1.76% | ||
slickhustler007 | 0 | 3,545,490,028 | 100% | ||
offgridlife | 0 | 516,034,049,422 | 100% | ||
susanli3769 | 0 | 628,239,701,919 | 100% | ||
mrpointp | 0 | 311,449,689,866 | 100% | ||
travelgirl | 0 | 136,626,256,087 | 100% | ||
mygod | 0 | 743,197,974 | 50% | ||
catwomanteresa | 0 | 385,924,154,463 | 100% | ||
dine77 | 0 | 128,697,062,321 | 70% | ||
dineroconopcion | 0 | 600,949,097 | 9% | ||
zonabitcoin | 0 | 816,856,091 | 9% | ||
oldman28 | 0 | 100,416,251,407 | 60% | ||
jeanlucsr | 0 | 513,269,100 | 0.9% | ||
idx | 0 | 23,287,760,560 | 100% | ||
aafeng | 0 | 712,723,834,911 | 100% | ||
cn-reader | 0 | 17,127,153,446 | 50% | ||
tvb | 0 | 3,943,449,324 | 30% | ||
felander | 0 | 49,742,640,893 | 9% | ||
santigs | 0 | 23,230,026,624 | 40% | ||
floatinglin | 0 | 5,892,986,510 | 100% | ||
mrspointm | 0 | 312,527,823,979 | 100% | ||
kimzwarch | 0 | 14,633,988,610 | 4% | ||
yogacoach | 0 | 9,445,786,911 | 9% | ||
chenlocus | 0 | 41,397,296,803 | 100% | ||
davidke20 | 0 | 64,716,156,884 | 38.32% | ||
circleoffriends | 0 | 1,046,260,566 | 100% | ||
votehero | 0 | 27,446,311,537 | 6.6% | ||
hqy | 0 | 17,152,057,267 | 100% | ||
victory622 | 0 | 206,931,925,449 | 100% | ||
metten | 0 | 123,376,291 | 100% | ||
namchau | 0 | 3,602,491,697 | 70% | ||
japanguide | 0 | 663,301,773 | 100% | ||
jychbetter | 0 | 382,237,428,570 | 100% | ||
winniex | 0 | 291,016,036,567 | 100% | ||
cn-book | 0 | 373,171,508 | 100% | ||
cn-movie | 0 | 176,387,796 | 100% | ||
etherpunk | 0 | 837,858,380 | 50% | ||
hendersonp | 0 | 1,357,782,440 | 9% | ||
traf | 0 | 2,183,487,251,444 | 58% | ||
ubikalo | 0 | 535,275,852 | 9% | ||
ioioioioi | 0 | 1,185,125,181 | 100% | ||
vivia | 0 | 676,250,540 | 100% | ||
breelikeatree | 0 | 160,115,623,821 | 100% | ||
mamaloves | 0 | 184,901,462 | 50% | ||
cryptonized | 0 | 17,266,595,092 | 12% | ||
elbrava | 0 | 3,836,180,192 | 50% | ||
soufianechakrouf | 0 | 15,849,039,996 | 100% | ||
mermaidvampire | 0 | 1,610,540,647 | 100% | ||
seikatsumkt | 0 | 4,791,829,512 | 75% | ||
xiaoli | 0 | 425,349,816 | 100% | ||
gustavoadolfodca | 0 | 931,536,664 | 40% | ||
emmali | 0 | 184,343,807,461 | 100% | ||
unconditionalove | 0 | 922,128,642 | 4.5% | ||
iipoh06 | 0 | 502,688,919 | 100% | ||
fsegredo1 | 0 | 524,823,785 | 9% | ||
reazuliqbal | 0 | 45,596,345,166 | 9% | ||
bestboom | 0 | 2,538,846,483 | 9% | ||
onepercentbetter | 0 | 15,272,949,574 | 12% | ||
manniman | 0 | 74,884,104,884 | 11% | ||
juanmanuellopez1 | 0 | 1,640,292,645 | 9% | ||
lordbutterfly | 0 | 395,089,454,088 | 100% | ||
themightyvolcano | 0 | 3,575,455,619 | 9% | ||
meanbees | 0 | 2,625,385,266 | 0.9% | ||
steem.services | 0 | 5,546,144,970 | 2.25% | ||
goktug0814 | 0 | 8,947,656,738 | 50% | ||
hmayak | 0 | 31,721,749,165 | 100% | ||
archisteem | 0 | 1,257,797,132 | 7.5% | ||
merlion | 0 | 578,412,423 | 12% | ||
nazomimatute1998 | 0 | 486,584,888 | 100% | ||
julian2013 | 0 | 154,741,820,981 | 100% | ||
dlike | 0 | 41,005,473,824 | 9% | ||
voxmortis | 0 | 37,116,603,625 | 20% | ||
steemaction | 0 | 4,165,778,658 | 100% | ||
bobby.madagascar | 0 | 2,730,485,245 | 9% | ||
pet.society | 0 | 14,254,032,704 | 6% | ||
annepink | 0 | 375,022,245,238 | 100% | ||
sasaadrian | 0 | 12,695,282,634 | 20% | ||
kabasakal | 0 | 768,776,483 | 100% | ||
cakemonster | 0 | 4,047,723,728 | 4.5% | ||
rasalom | 0 | 16,682,403,505 | 100% | ||
jacuzzi | 0 | 3,238,610,718 | 1.2% | ||
lestrange | 0 | 12,866,921,115 | 100% | ||
steemegg | 0 | 5,399,683,581 | 19.16% | ||
determine | 0 | 519,066,990 | 9% | ||
hungrybear | 0 | 524,635,550 | 12% | ||
yanhan | 0 | 143,910,901,738 | 100% | ||
kggymlife | 0 | 3,193,636,287 | 20% | ||
lovelemon | 0 | 11,272,196,158 | 20% | ||
mfblack | 0 | 1,225,894,046 | 8.55% | ||
photographercr | 0 | 22,429,818,596 | 11.6% | ||
dailyke20 | 0 | 80,870,546,975 | 100% | ||
firefuture | 0 | 619,310,353 | 4.5% | ||
jimhawkins | 0 | 521,231,993 | 64% | ||
milu-the-dog | 0 | 1,576,490,341 | 9% | ||
triplea.bot | 0 | 2,125,853,645 | 9% | ||
steem.leo | 0 | 10,750,498,430 | 9% | ||
helengutier2 | 0 | 11,698,769,867 | 9% | ||
beta500 | 0 | 9,770,800,792 | 9% | ||
votecenter | 0 | 136,187,421,196 | 50% | ||
janaveda | 0 | 100,106,101,942 | 100% | ||
moleah | 0 | 647,116,987 | 100% | ||
vickyli | 0 | 25,183,502,344 | 100% | ||
bilpcoin.pay | 0 | 519,722,283 | 10% | ||
lnakuma | 0 | 36,749,660,583 | 100% | ||
starnote | 0 | 311,112,936 | 100% | ||
ribary | 0 | 3,151,020,114 | 4.5% | ||
kgsupport | 0 | 2,323,893,464 | 50% | ||
moochain.net | 0 | 313,425,047 | 100% | ||
bilpcoinbpc | 0 | 1,040,552,754 | 5% | ||
mice-k | 0 | 836,464,908 | 9% | ||
julesquirin | 0 | 1,969,808,914 | 11.6% | ||
dpend.active | 0 | 626,252,421 | 1.8% | ||
lovequeen | 0 | 162,065,515,593 | 100% | ||
hivewatchers | 0 | 10,648,935,185 | 55% | ||
softworld | 0 | 116,542,162,443 | 32% | ||
dcityrewards | 0 | 305,153,152,300 | 9% | ||
jywahaha | 0 | 8,223,333,289 | 100% | ||
hivecur | 0 | 90,918,945 | 9% | ||
roberto58 | 0 | 9,675,194,850 | 100% | ||
olaunlimited | 0 | 44,941,359,950 | 26.1% | ||
blogstats | 0 | 655,252,570 | 100% | ||
philipmak | 0 | 1,469,470,889 | 50% | ||
ismaelrd04 | 0 | 10,579,277,422 | 100% | ||
kattycrochet | 0 | 4,742,403,361 | 29% | ||
evgen-xx | 0 | 216,159,826,821 | 50% | ||
dcrops | 0 | 33,451,777,007 | 4.5% | ||
eturnerx-honey | 0 | 16,637,144,198 | 41.1% | ||
wend1go | 0 | 38,018,957,324 | 100% | ||
drricksanchez | 0 | 45,189,086,195 | 10% | ||
zwhammer | 0 | 1,041,663,282 | 50% | ||
abundancelife | 0 | 33,184,115,078 | 100% | ||
lovelingling | 0 | 29,966,070,361 | 100% | ||
tina1219 | 0 | 5,359,621,452 | 100% | ||
zhangyan-123 | 0 | 45,431,452,109 | 100% | ||
alpha-omega | 0 | 5,643,142,974 | 100% | ||
lazy001 | 0 | 4,844,144,211 | 100% | ||
sunflor | 0 | 10,967,662,934 | 100% | ||
ilark | 0 | 197,710,632,238 | 100% | ||
adyiron | 0 | 7,702,082,495 | 100% | ||
hivefolks | 0 | 489,942,341,196 | 100% | ||
sunshineee | 0 | 204,665,669 | 8% | ||
be-alysha | 0 | 50,851,885,677 | 100% | ||
alborzrad | 0 | 380,608,610 | 100% | ||
hiveiq | 0 | 24,801,555,266 | 70% | ||
felerce93 | 0 | 108,811,847 | 100% | ||
polkallen | 0 | 0 | 1% | ||
love5200 | 0 | 1,763,535,868 | 100% |
O哥学霸👍👍👍
author | adyiron |
---|---|
permlink | re-oflyhigh-2022310t172925285z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","yoyow"],"app":"ecency/3.0.23-mobile","format":"markdown+html"} |
created | 2022-03-10 09:29:27 |
last_update | 2022-03-10 09:29:27 |
depth | 1 |
children | 0 |
last_payout | 2022-03-17 09:29:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 105,920,326,736,733 |
root_title | "学习使用YOYOW的API (Node API)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,192,181 |
net_rshares | 0 |
币问没玩过,币乎有玩过一阵子,现在也不能玩了😂
author | love5200 |
---|---|
permlink | re-oflyhigh-2022310t23496667z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","yoyow"],"app":"ecency/3.0.25-mobile","format":"markdown+html"} |
created | 2022-03-10 15:49:06 |
last_update | 2022-03-10 15:49:06 |
depth | 1 |
children | 0 |
last_payout | 2022-03-17 15:49:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 23 |
author_reputation | 538,315,184,929,192 |
root_title | "学习使用YOYOW的API (Node API)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,200,665 |
net_rshares | 0 |
O哥厉害,能感觉一篇技术类的文章,真正写起来可是相当不易啊。
author | lovelingling |
---|---|
permlink | re-oflyhigh-2022310t181737568z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","yoyow"],"app":"ecency/3.0.19-mobile","format":"markdown+html"} |
created | 2022-03-10 10:17:39 |
last_update | 2022-03-10 10:17:39 |
depth | 1 |
children | 0 |
last_payout | 2022-03-17 10:17:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 721,475,579,394,525 |
root_title | "学习使用YOYOW的API (Node API)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,192,987 |
net_rshares | 0 |
😋是不是叫优优平台,我好像弄过,最高峰价格也达到了4块,但是后来觉得社区力的内容太专业化了,我写不来
author | tina1219 |
---|---|
permlink | re-oflyhigh-2022310t212920671z |
category | hive-105017 |
json_metadata | {"tags":["cn","life","blog","yoyow"],"app":"ecency/3.0.22-vision","format":"markdown+html"} |
created | 2022-03-10 13:29:21 |
last_update | 2022-03-10 13:29:21 |
depth | 1 |
children | 0 |
last_payout | 2022-03-17 13:29:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 50 |
author_reputation | 145,035,944,940,969 |
root_title | "学习使用YOYOW的API (Node API)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,196,918 |
net_rshares | 0 |
看的蒙圈😂
author | zhangyan-123 |
---|---|
permlink | re-oflyhigh-2022310t212939847z |
category | hive-105017 |
json_metadata | {"tags":["hive-105017","cn","life","blog","yoyow"],"app":"ecency/3.0.19-mobile","format":"markdown+html"} |
created | 2022-03-10 13:29:39 |
last_update | 2022-03-10 13:29:39 |
depth | 1 |
children | 0 |
last_payout | 2022-03-17 13:29:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 891,406,605,564,608 |
root_title | "学习使用YOYOW的API (Node API)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 111,196,930 |
net_rshares | 0 |