create account

steemconnect 国内版 v0.1.3 by robertyan

View this thread on: hive.blogpeakd.comecency.com
· @robertyan · (edited)
$16.50
steemconnect 国内版 v0.1.3
## 介绍

之前实现 WhereIN 微信小程序的登录功能时,出于用户秘钥安全的考虑,希望可以通过授权而不是存储 posting key 的方式来实现用户对 Steem blockchain 的操作。但由于 [steemconnect](https://steemconnect.com/) 使用的 api.steemit.com 节点在国内不能使用,所以不得不对 steemconnect 做了一些简单的更改,实现了一个国内版,并加上了一些对小程序的支持,在这里做一些简单的分享。

所作的修改主要是两点:

1. 修改 api.steemit.com 节点为其他国内可用的节点,例如 anyx.io
2. 支持微信小程序登录:登录完成时,向小程序返回登录成功或失败的信息,以便小程序继续完成登录

fork 的 steemconnect 的项目代码在:https://github.com/steem-driver/steemconnect ,以MIT协议开源,如有需要可以进一步修改。

v0.1.3 的 release note 也可以看这里:https://github.com/steem-driver/steemconnect/releases/tag/v0.1.3

根据上面的修改,我们部署了一些国内可用的 steemconnect 版本:

1. https://steemconnect.netlify.com/ 部署在 Netlify 静态网站服务,国内访问速度较慢
2. https://steemconnect.cocozl.cn/ 部署在 @iguazi123 瓜子的服务器,国内访问速度较快

大家也可以根据需要使用。


<center>
![image.png](https://files.steempeak.com/file/steempeak/robertyan/w9BGaVpu-image.png)
<sup> screenshot from https://steemconnect.netlify.com</sup>
</center>

下面简要介绍一些修改的经过。



### 1. 修改默认的 API 节点

这一步是最重要的,但也是最简单的。在 steemconnect 项目中搜索 api.steemit.com,然后修改成希望使用的节点即可。

具体可以参见这个[commit](https://github.com/steem-driver/steemconnect/commit/c43f9637da7609eb200ff2d78cba38616c146c4a)

<center>
![image.png](https://files.steempeak.com/file/steempeak/robertyan/frYRnXlh-image.png)
<sup>screenshot from [this commit](https://github.com/steem-driver/steemconnect/commit/c43f9637da7609eb200ff2d78cba38616c146c4a)</sup>
</center>

### 2. 添加 Netlify 部署支持

完成上面的改动后,我一开始使用 [gh-pages](https://www.npmjs.com/package/gh-pages) 将 steemconnect 直接部署到 GitHub pages (https://steemconnect.tribes.rocks/),但
访问一些路径就会失败,比如:https://steemconnect.tribes.rocks/settings 返回 404 。这是由于 GitHub pages 不支持伪静态的路径。

<center>
![image.png](https://files.steempeak.com/file/steempeak/robertyan/jtGDYwIk-image.png)
<sup>screenshot from https://steemconnect.tribes.rocks/settings</sup>
</center>

因此,根据 [Vue CLI](https://cli.vuejs.org/guide/deployment.html#netlify) 里的建议我们将 steemconnect 重新部署到了 Netlify。只需要添加一个 `_redirects` 文件即可。

```txt
# Netlify settings for single-page application
/*    /index.html   200
```

然后,在 Netlify 里,访问 https://steemconnect.netlify.com/settings 路径是成功的:

<center>
![image.png](https://files.steempeak.com/file/steempeak/robertyan/KkWyr7CQ-image.png)
<sup>screenshot from https://steemconnect.netlify.com/settings</sup>
</center>

就此,我们已经可以用 https://steemconnect.netlify.com/ 来更方便的支持国内的用户了。


### 3. 添加微信小程序通讯

不过,我们的初始目的是为了在微信小程序里可以登录和授权,只部署一个国内版是还不够的。

为此,我们需要在 steemconnect 中判断此时是在微信小程序的 webview 中运行,并且在登录完成后,将登录的Steem用户名等信息返回给小程序。

判断是否在微信小程序的webview中:

src/helpers/utils.js

```js
export function isWeixinMiniProgram() {
  const ua = window.navigator.userAgent.toLowerCase();
  return new Promise(resolve => {
    if (ua.indexOf('micromessenger') === -1) {
      resolve(false);
    } else {
      wx.miniProgram.getEnv(res => {
        if (res.miniprogram) {
          resolve(true);
        } else {
          resolve(false);
        }
      });
    }
  });
}
```

成功时,发送Steem用户名等信息(而不是使用默认的通过 redirect_uri 重定向的方法):

src/views/LoginRequest.vue

```js
  if (isWeixin) {
    weixinNavigateBack();
    weixinSendMessage({
      context: 'login',
      ok: true,
      err: null,
      username: this.username,
      token,
      expired_in: 604800,
    });
  } else {
    // ...
  }
```

此后,我们在微信小程序的 web-view 里使用 steemconnect 登录成功时,就会成功获得用户、access_token 等信息用户进一步的处理。

另外,由于以上代码中会判断所处的环境,针对小程序所作的修改,并不会影响非小程序环境的 steemconnect 的使用,所以需要对 web 应用进行登录的情况,也可以使用这个版本。

### 4. 本地部署,提高访问速度

现在,我们基本可以使用修改后的 steemconnect 进行微信小程序登录了(当然,小程序本身还需要做很多修改)。但实际部署后,我们发现 https://steemconnect.netlify.com 速度还是太慢了,登录页面完整加载经常需要 60 ~ 100s 的时间。

于是,我们将 steemconnect 部署到了 https://cocozl.cn 的国内服务器,地址为:https://steemconnect.cocozl.cn/ ,访问速度有了明显的提高,大概 5s 左右可以加载完成,至少在用户还可以忍受的范围内了。

就此 WhereIN 小程序或其他小程序,都可以加入 Steem 的登录方式了。当然,之后 WhereIN 小程序会进一步优化,新用户可能只需要使用微信登录就可以了,这是后话。

在与 @iguazi123 瓜子讨论后,同意把 https://steemconnect.cocozl.cn/ 服务也开放给更多人使用,希望对其他面向国内用户的应用部署会有帮助。感谢瓜子和 WhereIN。

如果对于基于 Steem 的小程序的开发有兴趣,也欢迎加入我们一起来玩耍。

## 下一个版本

v0.1.3 版本还存在一些问题,大多数是 steemconnect 自身的问题:比如不支持中文,steemconnect 的UI流程冗余难用,API node 修改不便等。

为此,在下一个版本 steemconnect 国内版 v0.1.4 中,我们计划进行如下改进:

1. 简化 steemconnect 登录和授权的流程
2. 增强 节点配置的灵活性和可控性
3. 加强 steemconnect 的多语言支持(中文)

## 其他

最后,其实之前 村长 @ericet 也部署了一个旧版的 steemconnect http://steemconnectcn.herokuapp.com/ ,我之前研究时忘了这回事。。。而且 heroku app 的启动时间和访问速度可能也存在一些挑战,所以最后还是基于最新版的 steemconnect 修改了。大家需要使用旧版时也可以尝试用这个版本测试。
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 430 others
👎  
properties (23)
authorrobertyan
permlinksteemconnect-v0-1-3
categoryhive-180932
json_metadata{"tags":["hive-180932","cn","cn-reader","cn-curation","whalepower","cn-stem","steemstem","cn-programming","palnet","zzan","dblog","mediaofficials","marlians","neoxian","lassecash","upfundme","busy","actnearn"],"users":["iguazi123","ericet"],"image":"https://files.steempeak.com/file/steempeak/robertyan/w9BGaVpu-image.png","links":["https://steemconnect.com/","https://github.com/steem-driver/steemconnect","https://github.com/steem-driver/steemconnect/releases/tag/v0.1.3","https://steemconnect.netlify.com/","https://steemconnect.cocozl.cn/","https://steemconnect.netlify.com","https://github.com/steem-driver/steemconnect/commit/c43f9637da7609eb200ff2d78cba38616c146c4a","https://www.npmjs.com/package/gh-pages","https://steemconnect.tribes.rocks/","https://steemconnect.tribes.rocks/settings","https://cli.vuejs.org/guide/deployment.html#netlify","https://steemconnect.netlify.com/settings","https://cocozl.cn","http://steemconnectcn.herokuapp.com/"],"app":"busy/2.5.4","format":"markdown"}
created2020-03-04 13:59:36
last_update2020-03-04 14:22:24
depth0
children19
last_payout2020-03-11 13:59:36
cashout_time1969-12-31 23:59:59
total_payout_value8.410 HBD
curator_payout_value8.087 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,327
author_reputation16,909,391,530,163
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,048,015
net_rshares54,464,014,745,121
author_curate_reward""
vote details (495)
@annepink ·
杰出的言神👍💪
!shop

Posted using [Partiko Android](https://partiko.app/referral/annepink)
properties (22)
authorannepink
permlinkannepink-re-robertyan-steemconnect-v0-1-3-20200305t050806762z
categoryhive-180932
json_metadata{"app":"partiko","client":"android"}
created2020-03-05 05:08:06
last_update2020-03-05 05:08:06
depth1
children1
last_payout2020-03-12 05:08:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation787,946,643,345,645
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,068,828
net_rshares0
@robertyan ·
谢谢萍萍~
properties (22)
authorrobertyan
permlinkq6q8dx
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 15:30:03
last_update2020-03-05 15:30:03
depth2
children0
last_payout2020-03-12 15:30:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation16,909,391,530,163
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,086,487
net_rshares0
@ericet ·
$0.07
properties (23)
authorericet
permlinkq6oa24
categoryhive-180932
json_metadata{"users":["justyy"],"app":"busy/2.5.4"}
created2020-03-04 14:10:51
last_update2020-03-04 14:10:51
depth1
children2
last_payout2020-03-11 14:10:51
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation195,650,625,080,393
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,048,427
net_rshares419,793,926,189
author_curate_reward""
vote details (63)
@robertyan ·
$0.07
properties (23)
authorrobertyan
permlinkq6obkg
categoryhive-180932
json_metadata{"users":["justyy"],"app":"busy/2.5.4"}
created2020-03-04 14:43:30
last_update2020-03-04 14:43:30
depth2
children1
last_payout2020-03-11 14:43:30
cashout_time1969-12-31 23:59:59
total_payout_value0.035 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation16,909,391,530,163
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,049,347
net_rshares415,679,348,528
author_curate_reward""
vote details (54)
@justyy ·
[SteemIt 代理工具更新](https://steem.buzz/hive-180932/@justyy/39b2nm-steemit)
👍  
properties (23)
authorjustyy
permlinkq6orig
categoryhive-180932
json_metadata{"links":["https://steem.buzz/hive-180932/@justyy/39b2nm-steemit"],"app":"steemit/0.2"}
created2020-03-04 20:27:54
last_update2020-03-04 20:27:54
depth3
children0
last_payout2020-03-11 20:27:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length71
author_reputation280,616,224,641,976
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,057,774
net_rshares2,713,593,368
author_curate_reward""
vote details (1)
@ericet ·
@tipu curate
properties (22)
authorericet
permlinkq6oa5t
categoryhive-180932
json_metadata{"users":["tipu"],"app":"steemcoinpan/0.1"}
created2020-03-04 14:13:06
last_update2020-03-04 14:13:06
depth1
children1
last_payout2020-03-11 14:13:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation195,650,625,080,393
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,048,526
net_rshares0
@tipu ·
<a href="https://tipu.online/curator?ericet" target="_blank">Upvoted  &#128076;</a> (Mana: 0/10 - <a href="https://steempeak.com/steem/@tipu/tipu-curate-project-update-recharging-curation-mana" target="_blank">need recharge</a>?)
properties (22)
authortipu
permlinkre-q6oa5t-20200304t141320
categoryhive-180932
json_metadata""
created2020-03-04 14:13:21
last_update2020-03-04 14:13:21
depth2
children0
last_payout2020-03-11 14:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation55,204,773,715,723
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,048,537
net_rshares0
@steemstem ·
re-robertyan-steemconnect-v0-1-3-20200305t084907492z
<div class='text-justify'> <div class='pull-left'> <center> <img width='200' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </center>  <br/> </div> 

This post has been voted on by the **SteemSTEM curation team** and voting trail. It is elligible for support from @minnowbooster.<br /> 

If you appreciate the work we are doing, then consider supporting our witness [@stem.witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness)! <br /> 

For additional information please join us on the [SteemSTEM discord]( https://discord.gg/BPARaqn) and to get to know the rest of the community!<br />

Please consider using the <a href='https://www.steemstem.io'>steemstem.io</a> app and/or including @steemstem in the list of beneficiaries of this post. This could yield a stronger support from SteemSTEM.
properties (22)
authorsteemstem
permlinkre-robertyan-steemconnect-v0-1-3-20200305t084907492z
categoryhive-180932
json_metadata{"app":"steemstem-bot"}
created2020-03-05 08:49:12
last_update2020-03-05 08:49:12
depth1
children0
last_payout2020-03-12 08:49:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length877
author_reputation262,017,435,115,313
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,074,131
net_rshares0
@sunai ·
又来拍手
properties (22)
authorsunai
permlinkq6q7b5
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 15:06:42
last_update2020-03-05 15:06:42
depth1
children1
last_payout2020-03-12 15:06:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation17,899,844,015,065
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,085,649
net_rshares0
@robertyan ·
谢谢三妞~
properties (22)
authorrobertyan
permlinkq6q8ec
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-05 15:30:18
last_update2020-03-05 15:30:18
depth2
children0
last_payout2020-03-12 15:30:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation16,909,391,530,163
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,086,497
net_rshares0
@sunai ·
!shop

Posted using [Partiko Android](https://partiko.app/referral/sunai)
properties (22)
authorsunai
permlinksunai-re-robertyan-steemconnect-v0-1-3-20200305t021559108z
categoryhive-180932
json_metadata{"app":"partiko","client":"android"}
created2020-03-05 02:16:00
last_update2020-03-05 02:16:00
depth1
children1
last_payout2020-03-12 02:16:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation17,899,844,015,065
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,064,745
net_rshares0
@robertyan ·
谢谢三妞~

Posted using [Partiko iOS](https://partiko.app/referral/robertyan)
properties (22)
authorrobertyan
permlinkrobertyan-re-sunai-sunai-re-robertyan-steemconnect-v0-1-3-20200305t035246610z
categoryhive-180932
json_metadata{"app":"partiko","client":"ios"}
created2020-03-05 03:52:48
last_update2020-03-05 03:52:48
depth2
children0
last_payout2020-03-12 03:52:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation16,909,391,530,163
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,067,076
net_rshares0
@teamcn-shop ·
你好鸭,阿盐!
@annepink赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 3枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
authorteamcn-shop
permlinkannepink-re-robertyan-steemconnect-v0-1-3-20200305t050806762z
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-03-05 05:08:18
last_update2020-03-05 05:08:18
depth1
children0
last_payout2020-03-12 05:08:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length283
author_reputation11,393,746,055,281
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,068,832
net_rshares0
@teamcn-shop ·
你好鸭,阿盐!
@sunai赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 2枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
authorteamcn-shop
permlinksunai-re-robertyan-steemconnect-v0-1-3-20200305t021559108z
categoryhive-180932
json_metadata"{"app":"teamcn-shop bot/1.0"}"
created2020-03-05 02:16:12
last_update2020-03-05 02:16:12
depth1
children0
last_payout2020-03-12 02:16:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length280
author_reputation11,393,746,055,281
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,064,751
net_rshares0
@wherein ·
太棒了,想到了,就去做,点赞
properties (22)
authorwherein
permlinkq6oe6n
categoryhive-180932
json_metadata{"app":"steemit/0.2"}
created2020-03-04 15:38:12
last_update2020-03-04 15:38:12
depth1
children1
last_payout2020-03-11 15:38:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation57,671,186,137,282
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,050,750
net_rshares0
@robertyan ·
谢谢瓜子~

Posted using [Partiko iOS](https://partiko.app/referral/robertyan)
properties (22)
authorrobertyan
permlinkrobertyan-re-wherein-q6oe6n-20200305t035217761z
categoryhive-180932
json_metadata{"app":"partiko","client":"ios"}
created2020-03-05 03:52:18
last_update2020-03-05 03:52:18
depth2
children0
last_payout2020-03-12 03:52:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation16,909,391,530,163
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,067,065
net_rshares0
@windowglass ·
阿盐棒棒滴!!
拍拍拍……
!shop
properties (22)
authorwindowglass
permlinkq6rm4m
categoryhive-180932
json_metadata{"app":"busy/2.5.4"}
created2020-03-06 09:25:45
last_update2020-03-06 09:25:45
depth1
children1
last_payout2020-03-13 09:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation28,329,818,684,832
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,114,211
net_rshares0
@robertyan ·
谢谢糖糖!
properties (22)
authorrobertyan
permlinkre-windowglass-2020310t11480799z
categoryhive-180932
json_metadata{"tags":["esteem"],"app":"esteem/2.2.4-mobile","format":"markdown+html","community":"hive-125125"}
created2020-03-10 03:48:03
last_update2020-03-10 03:48:03
depth2
children0
last_payout2020-03-17 03:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation16,909,391,530,163
root_title"steemconnect 国内版 v0.1.3"
beneficiaries
0.
accountesteemapp
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,224,203
net_rshares0
@yysb ·
加油!@robertyan
鸽子在mediaofficials支持你。
properties (22)
authoryysb
permlinkre-steemconnect-v0-1-3-20200304t141444z
categoryhive-180932
json_metadata"{"app": "rewarding/0.1.5"}"
created2020-03-04 14:14:48
last_update2020-03-04 14:14:48
depth1
children0
last_payout2020-03-11 14:14:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation96,341,621,268
root_title"steemconnect 国内版 v0.1.3"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id96,048,582
net_rshares0