create account

MicroSteemit on Wechat application - add username ,password checking and idenfy the active voters of the post by cha0s0000

View this thread on: hive.blogpeakd.comecency.com
· @cha0s0000 · (edited)
$192.95
MicroSteemit on Wechat application - add username ,password checking and idenfy the active voters of the post
# New Features

---

## What is  MicroSteemit

**MicroSteemit is developed based on the wechat micro application which is maintained by the tencent company.**

> wechat micro application is an application that doesn't need to be downloaded and installed. It implements the dream of "reach within reach", and users scan or search can open the micro application through the wechat application. It also reflects the idea of "running away", and users don't have to worry about installing too many apps. Micro Applications will be ubiquitous, readily available, without installing uninstall. Suitable for life service offline shops and non-new low-frequency conversion. The micro application can realize seven functions such as message notification, offline scan code and public number association. Among them, the user can realize the mutual jump between the wechat public account and the micro application through wechat association.

In a word , MicroSteemit is an application which can be used without downloading while chatting with friends in wechat easily. Just by scanning the MicroSteemit QR code  can we commodiously surf on  the steemit community.

**But now , the MicroSteemit is still in developed phase .Of course you also can test the project in the wechat application tool .See the github project in detail.**

---

## Existing features right now

- Show informations of the steemit account in the info page , including steemit account name ,reputation ,balance,sbd_balance, vesting_shares, steem power ,delegated SP ,voting _power , created time ,keys and posting auth.
- Show posts in trending , hot , new ,created .
- Add sharing to friends function
- Show detail of the post  including the post content , voting number , comment number ,pending payout and comments detail
- Show steemit account voting history
- Show steemit account followers and following list
- Show steemit account ever posts
- Show steemit account feed post list
- Show steemit account comments history
- Show steemit account replies history
- Show steemit account transaction history
- Show trending tags 
- Searching the tags
- Show different posts of different tags 
- Login with different account
- Navigate to set current tag while viewing the post list
- Navigate to view the author profile
- Add favorite posts collection
- Show steem/sbd price market
- Setting the gesture password
- Setting up back-end server
- Identify the active voters

### **After finish the necessary function of the MicroSteemit , you all will be able to access to this new App by just scan the QR code **

### **Please look forward to it .**



## **Since so much restriction while applying the Micro Steemit on Wechat , i have to build up own server and apply for ICP record of the hostname.**

## **In addition , i also must setup a white list.**

## **So i will be a bit longer to put the app online .Sorry about that** !

---

## What feature(s) did you add?

- use aes Encrypt account password in the login page
- check account password whether is valid or not
- add operation module in the  back-end server
- identify whether the post has been approved or not and showing different icons

---

## How did you implement it/them?

- Encrypt account password with AES in the login page

  firstly set the 128 bit key and Hexadecimal number as the secret key offset

  ```
  // length of key is 16 of 128 bit. JUST for test the Decrypt
  const key = ''****************''
  // Hexadecimal number as the secret key offset. JUST for test the Decrypt
  const iv = '****************'
  ```

  Encrypt  the password

  ```
   Encrypt: function (word) {
      var srcs = fun_aes.CryptoJS.enc.Utf8.parse(word);
      var encrypted = fun_aes.CryptoJS.AES.encrypt(srcs, key, { iv: iv, mode: fun_aes.CryptoJS.mode.CBC, padding: fun_aes.CryptoJS.pad.Pkcs7 });
      return encrypted.ciphertext.toString().toUpperCase();
    },
  ```

- Decrypt account password in back-end server

  ```
  const aesDecrypt = function(data, secretKey, iv) {
      const cipherEncoding = 'hex'
      const clearEncoding = 'utf8'
      const cipher = crypto.createDecipheriv('aes-128-cbc',secretKey, iv)
      return  cipher.update(data,cipherEncoding,clearEncoding) + cipher.final(clearEncoding)
   }
  ```

- double checking the post permlink and author for identifying the active voters

  ```
  wx.request({
          url: 'https://api.steemjs.com/get_active_votes?author=' + author + '&permlink=' +permlink,
          method: 'GET',
          success: function (e) {
            console.log("request for active votes");
            if (e.statusCode == '200') {
              var activeVotes = e.data
              for (var vote in activeVotes) {
                if (activeVotes[vote].voter == currentAccount) {
                  console.log("I am one of the voters");
                  alreadyVotePermlink.push(permlink);
                  var newPostsData = that.data.postsData;
                  newPostsData[index].voteOrNot = 1;
                  that.setData({ postsData:newPostsData })
                  console.log(newPostsData)
                  break;
                }
              }
            }
          },
          complete:function(e){
        
          }
        })
  ```

  ​

---

## Screenshots of new features

![GIF.gif](https://steemitimages.com/DQmbUPrn3gvk22BQ6Mn3ozzEi3PJSvV3gSLQyXAUubxurN7/GIF.gif)![GIF.gif](https://steemitimages.com/DQmegPzsGGAWEyCMFqWdGoxThsdgX3fZHXp47gRaMcXb6T8/GIF.gif)



---

## Commits on github about the new features 

- https://github.com/Cha0s0000/MicroSteemit/commit/846931b27579d5edc1808ba232feeb86c85d84f3

   1. use aes Encrypt account password in the login page
   2. check password whether is valid or not

- https://github.com/Cha0s0000/MicroSteemit/commit/2c29ac473049d535bf39d078ff208b87e16face0

   1.add operation module into back-end server.

   2.decrypt the password and check if valid or not

- https://github.com/Cha0s0000/MicroSteemit/commit/90761036f2aa3b11d6e2e14284b0a3d207e75ee9

   1.identify whether the post has been approved or not and showing different icons in the posts page

---

## Roadmap

- Add more function like transfer,chat and so on.
- complete the back-end server 
- show more detail of steem ,sbd and other coins price
- Perfect the UI

---

## How to contribute?

Github: <https://github.com/Cha0s0000/MicroSteemit>

- Fork it!
- Create your feature branch: `git checkout -b my-new-feature`
- Commit your changes: `git commit -am 'Add some feature'`
- Push to the branch: `git push origin my-new-feature`
- Submit a pull request.

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@cha0s0000/microsteemit-on-wechat-application-add-username-password-checking-and-idenfy-the-active-voters-of-the-post">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 206 others
properties (23)
authorcha0s0000
permlinkmicrosteemit-on-wechat-application-add-username-password-checking-and-idenfy-the-active-voters-of-the-post
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":123103813,"name":"MicroSteemit","full_name":"Cha0s0000/MicroSteemit","html_url":"https://github.com/Cha0s0000/MicroSteemit","fork":false,"owner":{"login":"Cha0s0000"}},"pullRequests":[{"url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/29","id":184363553,"html_url":"https://github.com/Cha0s0000/MicroSteemit/pull/29","diff_url":"https://github.com/Cha0s0000/MicroSteemit/pull/29.diff","patch_url":"https://github.com/Cha0s0000/MicroSteemit/pull/29.patch","issue_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/29","number":29,"state":"closed","locked":false,"title":"add login function with password","user":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"body":"1. aes Encrypt account password\r\n2. check password whether is valid or not\r\n3.identify the post whether has been voted or not and change the voting icon if so","created_at":"2018-04-26T14:41:39Z","updated_at":"2018-04-26T14:41:52Z","closed_at":"2018-04-26T14:41:52Z","merged_at":"2018-04-26T14:41:52Z","merge_commit_sha":"cfebc9d7befcb41215c04e9bd9aff1f42c0f5821","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/29/commits","review_comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/29/comments","review_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/29/comments","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/af20e4008d68be82b52a0b42042cdd7cdf5b0003","head":{"label":"Cha0s0000:update-info-page","ref":"update-info-page","sha":"af20e4008d68be82b52a0b42042cdd7cdf5b0003","user":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"repo":{"id":123103813,"name":"MicroSteemit","full_name":"Cha0s0000/MicroSteemit","owner":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Cha0s0000/MicroSteemit","description":"MicroSteemit on Wechat application","fork":false,"url":"https://api.github.com/repos/Cha0s0000/MicroSteemit","forks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/forks","keys_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/teams","hooks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/hooks","issue_events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/events{/number}","events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/events","assignees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/assignees{/user}","branches_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/branches{/branch}","tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/tags","blobs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/refs{/sha}","trees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/{sha}","languages_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/languages","stargazers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/stargazers","contributors_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contributors","subscribers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscribers","subscription_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscription","commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/commits{/sha}","git_commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/commits{/sha}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/comments{/number}","issue_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/comments{/number}","contents_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contents/{+path}","compare_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/merges","archive_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/downloads","issues_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues{/number}","pulls_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls{/number}","milestones_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/milestones{/number}","notifications_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/labels{/name}","releases_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/releases{/id}","deployments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/deployments","created_at":"2018-02-27T09:16:20Z","updated_at":"2018-04-26T14:43:04Z","pushed_at":"2018-04-26T14:43:03Z","git_url":"git://github.com/Cha0s0000/MicroSteemit.git","ssh_url":"git@github.com:Cha0s0000/MicroSteemit.git","clone_url":"https://github.com/Cha0s0000/MicroSteemit.git","svn_url":"https://github.com/Cha0s0000/MicroSteemit","homepage":null,"size":649,"stargazers_count":6,"watchers_count":6,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":3,"open_issues":0,"watchers":6,"default_branch":"master"}},"base":{"label":"Cha0s0000:master","ref":"master","sha":"d9daae19d25aef8b6e2746f3b5c3ba14c590d059","user":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"repo":{"id":123103813,"name":"MicroSteemit","full_name":"Cha0s0000/MicroSteemit","owner":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Cha0s0000/MicroSteemit","description":"MicroSteemit on Wechat application","fork":false,"url":"https://api.github.com/repos/Cha0s0000/MicroSteemit","forks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/forks","keys_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/teams","hooks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/hooks","issue_events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/events{/number}","events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/events","assignees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/assignees{/user}","branches_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/branches{/branch}","tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/tags","blobs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/refs{/sha}","trees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/{sha}","languages_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/languages","stargazers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/stargazers","contributors_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contributors","subscribers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscribers","subscription_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscription","commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/commits{/sha}","git_commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/commits{/sha}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/comments{/number}","issue_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/comments{/number}","contents_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contents/{+path}","compare_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/merges","archive_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/downloads","issues_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues{/number}","pulls_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls{/number}","milestones_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/milestones{/number}","notifications_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/labels{/name}","releases_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/releases{/id}","deployments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/deployments","created_at":"2018-02-27T09:16:20Z","updated_at":"2018-04-26T14:43:04Z","pushed_at":"2018-04-26T14:43:03Z","git_url":"git://github.com/Cha0s0000/MicroSteemit.git","ssh_url":"git@github.com:Cha0s0000/MicroSteemit.git","clone_url":"https://github.com/Cha0s0000/MicroSteemit.git","svn_url":"https://github.com/Cha0s0000/MicroSteemit","homepage":null,"size":649,"stargazers_count":6,"watchers_count":6,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":3,"open_issues":0,"watchers":6,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/29"},"html":{"href":"https://github.com/Cha0s0000/MicroSteemit/pull/29"},"issue":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/29"},"comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/29/comments"},"review_comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/29/comments"},"review_comment":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/29/commits"},"statuses":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/af20e4008d68be82b52a0b42042cdd7cdf5b0003"}},"author_association":"OWNER"},{"url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/28","id":184361007,"html_url":"https://github.com/Cha0s0000/MicroSteemit/pull/28","diff_url":"https://github.com/Cha0s0000/MicroSteemit/pull/28.diff","patch_url":"https://github.com/Cha0s0000/MicroSteemit/pull/28.patch","issue_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/28","number":28,"state":"closed","locked":false,"title":"add login function and voting identify","user":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"body":"1. use aes Encrypt account password in the login page\r\n2. check account password whether is valid or not\r\n3.add operation module into back-end server\r\n4.identify whether the post has been approved or not and showing different icons","created_at":"2018-04-26T14:33:56Z","updated_at":"2018-04-26T14:43:03Z","closed_at":"2018-04-26T14:43:03Z","merged_at":"2018-04-26T14:43:03Z","merge_commit_sha":"4b3975c580d812a018eac449804b31acf069b929","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/28/commits","review_comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/28/comments","review_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/28/comments","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/2c29ac473049d535bf39d078ff208b87e16face0","head":{"label":"Cha0s0000:useOwnServer","ref":"useOwnServer","sha":"2c29ac473049d535bf39d078ff208b87e16face0","user":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"repo":{"id":123103813,"name":"MicroSteemit","full_name":"Cha0s0000/MicroSteemit","owner":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Cha0s0000/MicroSteemit","description":"MicroSteemit on Wechat application","fork":false,"url":"https://api.github.com/repos/Cha0s0000/MicroSteemit","forks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/forks","keys_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/teams","hooks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/hooks","issue_events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/events{/number}","events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/events","assignees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/assignees{/user}","branches_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/branches{/branch}","tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/tags","blobs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/refs{/sha}","trees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/{sha}","languages_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/languages","stargazers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/stargazers","contributors_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contributors","subscribers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscribers","subscription_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscription","commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/commits{/sha}","git_commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/commits{/sha}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/comments{/number}","issue_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/comments{/number}","contents_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contents/{+path}","compare_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/merges","archive_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/downloads","issues_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues{/number}","pulls_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls{/number}","milestones_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/milestones{/number}","notifications_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/labels{/name}","releases_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/releases{/id}","deployments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/deployments","created_at":"2018-02-27T09:16:20Z","updated_at":"2018-04-26T14:43:04Z","pushed_at":"2018-04-26T14:43:03Z","git_url":"git://github.com/Cha0s0000/MicroSteemit.git","ssh_url":"git@github.com:Cha0s0000/MicroSteemit.git","clone_url":"https://github.com/Cha0s0000/MicroSteemit.git","svn_url":"https://github.com/Cha0s0000/MicroSteemit","homepage":null,"size":649,"stargazers_count":6,"watchers_count":6,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":3,"open_issues":0,"watchers":6,"default_branch":"master"}},"base":{"label":"Cha0s0000:master","ref":"master","sha":"d9daae19d25aef8b6e2746f3b5c3ba14c590d059","user":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"repo":{"id":123103813,"name":"MicroSteemit","full_name":"Cha0s0000/MicroSteemit","owner":{"login":"Cha0s0000","id":13085816,"avatar_url":"https://avatars0.githubusercontent.com/u/13085816?v=4","gravatar_id":"","url":"https://api.github.com/users/Cha0s0000","html_url":"https://github.com/Cha0s0000","followers_url":"https://api.github.com/users/Cha0s0000/followers","following_url":"https://api.github.com/users/Cha0s0000/following{/other_user}","gists_url":"https://api.github.com/users/Cha0s0000/gists{/gist_id}","starred_url":"https://api.github.com/users/Cha0s0000/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Cha0s0000/subscriptions","organizations_url":"https://api.github.com/users/Cha0s0000/orgs","repos_url":"https://api.github.com/users/Cha0s0000/repos","events_url":"https://api.github.com/users/Cha0s0000/events{/privacy}","received_events_url":"https://api.github.com/users/Cha0s0000/received_events","type":"User","site_admin":false},"private":false,"html_url":"https://github.com/Cha0s0000/MicroSteemit","description":"MicroSteemit on Wechat application","fork":false,"url":"https://api.github.com/repos/Cha0s0000/MicroSteemit","forks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/forks","keys_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/teams","hooks_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/hooks","issue_events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/events{/number}","events_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/events","assignees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/assignees{/user}","branches_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/branches{/branch}","tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/tags","blobs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/refs{/sha}","trees_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/{sha}","languages_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/languages","stargazers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/stargazers","contributors_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contributors","subscribers_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscribers","subscription_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/subscription","commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/commits{/sha}","git_commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/git/commits{/sha}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/comments{/number}","issue_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/comments{/number}","contents_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/contents/{+path}","compare_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/merges","archive_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/downloads","issues_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues{/number}","pulls_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls{/number}","milestones_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/milestones{/number}","notifications_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/labels{/name}","releases_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/releases{/id}","deployments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/deployments","created_at":"2018-02-27T09:16:20Z","updated_at":"2018-04-26T14:43:04Z","pushed_at":"2018-04-26T14:43:03Z","git_url":"git://github.com/Cha0s0000/MicroSteemit.git","ssh_url":"git@github.com:Cha0s0000/MicroSteemit.git","clone_url":"https://github.com/Cha0s0000/MicroSteemit.git","svn_url":"https://github.com/Cha0s0000/MicroSteemit","homepage":null,"size":649,"stargazers_count":6,"watchers_count":6,"language":"JavaScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":3,"mirror_url":null,"archived":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit"},"forks":3,"open_issues":0,"watchers":6,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/28"},"html":{"href":"https://github.com/Cha0s0000/MicroSteemit/pull/28"},"issue":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/28"},"comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/28/comments"},"review_comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/28/comments"},"review_comment":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/28/commits"},"statuses":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/2c29ac473049d535bf39d078ff208b87e16face0"}},"author_association":"OWNER"}],"platform":"github","type":"development","tags":["utopian-io","microsteemit","steem-app","steemdev"],"links":["https://steemitimages.com/DQmbUPrn3gvk22BQ6Mn3ozzEi3PJSvV3gSLQyXAUubxurN7/GIF.gif","https://steemitimages.com/DQmegPzsGGAWEyCMFqWdGoxThsdgX3fZHXp47gRaMcXb6T8/GIF.gif"],"image":["https://steemitimages.com/DQmbUPrn3gvk22BQ6Mn3ozzEi3PJSvV3gSLQyXAUubxurN7/GIF.gif","https://steemitimages.com/DQmegPzsGGAWEyCMFqWdGoxThsdgX3fZHXp47gRaMcXb6T8/GIF.gif"],"moderator":{"account":"justyy","time":"2018-04-27T07:56:32.411Z","pending":false,"reviewed":true,"flagged":false},"questions":{"voters":["justyy"],"answers":[{"question_id":"dev-1","answer_id":"dev-1-a-2","user":"justyy","influence":90},{"question_id":"dev-2","answer_id":"dev-2-a-2","user":"justyy","influence":90},{"question_id":"dev-3","answer_id":"dev-3-a-2","user":"justyy","influence":90},{"question_id":"dev-4","answer_id":"dev-4-a-2","user":"justyy","influence":90},{"question_id":"dev-5","answer_id":"dev-5-a-2","user":"justyy","influence":90},{"question_id":"dev-6","answer_id":"dev-6-a-1","user":"justyy","influence":90},{"question_id":"dev-7","answer_id":"dev-7-a-2","user":"justyy","influence":90}],"total_influence":0,"most_rated":[{"question_id":"dev-1","answer_id":"dev-1-a-2","influence":90,"voters":["justyy"]},{"question_id":"dev-2","answer_id":"dev-2-a-2","influence":90,"voters":["justyy"]},{"question_id":"dev-3","answer_id":"dev-3-a-2","influence":90,"voters":["justyy"]},{"question_id":"dev-4","answer_id":"dev-4-a-2","influence":90,"voters":["justyy"]},{"question_id":"dev-5","answer_id":"dev-5-a-2","influence":90,"voters":["justyy"]},{"question_id":"dev-6","answer_id":"dev-6-a-1","influence":90,"voters":["justyy"]},{"question_id":"dev-7","answer_id":"dev-7-a-2","influence":90,"voters":["justyy"]}]},"score":74.75,"total_influence":90,"staff_pick":null,"config":{"questions":[{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"dev-1","answers":[{"answer":"The quality of the post is fantastic.","answer_id":"dev-1-a-1","value":10},{"answer":"The post is of very good quality. ","answer_id":"dev-1-a-2","value":8},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"dev-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"dev-1-a-4","value":0}]},{"question":"How would you rate the impact and significance of the contribution to the project and/or open source ecosystem in terms of uniqueness, usefulness and potential future applications?","question_id":"dev-2","answers":[{"answer":"This contribution adds high value and holds great significance for the project and/or open source ecosystem.","answer_id":"dev-2-a-1","value":35},{"answer":"This contribution adds significant value to the project and/or open source ecosystem. ","answer_id":"dev-2-a-2","value":28},{"answer":"This contribution adds some value to the project and/or open source ecosystem.","answer_id":"dev-2-a-3","value":17.5},{"answer":"This contribution hold no value and is insignificant in impact. ","answer_id":"dev-2-a-4","value":0}]},{"question":"How would you rate the total volume of work invested into this contribution?","question_id":"dev-3","answers":[{"answer":"This contribution appears to have demanded a lot of intensive work.","answer_id":"dev-3-a-1","value":20},{"answer":"This contribution appears to have required an average volume of work.","answer_id":"dev-3-a-2","value":14},{"answer":"This contribution shows some work done.","answer_id":"dev-3-a-3","value":6},{"answer":"This contribution shows no work done.","answer_id":"dev-3-a-4","value":0}]},{"question":"How would you rate the quality of the code submitted?","question_id":"dev-4","answers":[{"answer":"High - it follows all best practices. ","answer_id":"dev-4-a-1","value":20},{"answer":"Average - it follows most best practices.","answer_id":"dev-4-a-2","value":14},{"answer":"Low - it follows some best practices.","answer_id":"dev-4-a-3","value":6},{"answer":"Very low - it doesn't follow any best practices. ","answer_id":"dev-4-a-4","value":0}]},{"question":"How would you rate the knowledge and expertise necessary to fix the bug / implement the added feature(s)?","question_id":"dev-5","answers":[{"answer":"High - a lot of research and specific knowledge was required.","answer_id":"dev-5-a-1","value":7.5},{"answer":"Average - some research and knowledge was required.","answer_id":"dev-5-a-2","value":5.25},{"answer":"Low - not much knowledge or skill were required.","answer_id":"dev-5-a-3","value":2.25},{"answer":"Insignificant - no knowledge or skills were necessary.","answer_id":"dev-5-a-4","value":0}]},{"question":"How would you rate the accuracy and readability of the commit messages?","question_id":"dev-6","answers":[{"answer":"High - they are concise, descriptive and consistent. ","answer_id":"dev-6-a-1","value":2.5},{"answer":"Average - they are mostly concise, descriptive and consistent. ","answer_id":"dev-6-a-2","value":2},{"answer":"Low - they could be more concise, descriptive or consistent.","answer_id":"dev-6-a-3","value":0.75},{"answer":"Very low - they aren't concise, descriptive or consistent at all.","answer_id":"dev-6-a-4","value":0}]},{"question":"How do you rate the quality of the comments in the code?","question_id":"dev-7","answers":[{"answer":"High - everything is well-commented and adds to the readability of the code. ","answer_id":"dev-7-a-1","value":5},{"answer":"Average - most of the code is commented and most if it adds to the readability of the code.","answer_id":"dev-7-a-2","value":3},{"answer":"Low - little of the code is commented, but it still adds to the readability.","answer_id":"dev-7-a-3","value":1.5},{"answer":"Very low - the added comments provide no value or are not present at all.","answer_id":"dev-7-a-4","value":0}]}]}}"
created2018-04-26 14:54:21
last_update2018-04-27 07:56:33
depth0
children2
last_payout2018-05-03 14:54:21
cashout_time1969-12-31 23:59:59
total_payout_value141.044 HBD
curator_payout_value51.902 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,819
author_reputation30,983,518,016,225
root_title"MicroSteemit on Wechat application - add username ,password checking and idenfy the active voters of the post"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,275,285
net_rshares34,505,871,648,308
author_curate_reward""
vote details (270)
@justyy ·
$0.04
Thank you very much. Maybe next time you can capture the screenshots on iPad which gives a better resolution.

----------------------------------------------------------------------
Need help? Write a ticket on https://support.utopian.io.
Chat with us on [Discord](https://discord.gg/uTyJkNm).

**[[utopian-moderator]](https://utopian.io/moderators)**
👍  , , , ,
properties (23)
authorjustyy
permlinkre-cha0s0000-microsteemit-on-wechat-application-add-username-password-checking-and-idenfy-the-active-voters-of-the-post-20180427t075731546z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-27 07:57:36
last_update2018-04-27 07:57:36
depth1
children0
last_payout2018-05-04 07:57:36
cashout_time1969-12-31 23:59:59
total_payout_value0.042 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length351
author_reputation280,616,224,641,976
root_title"MicroSteemit on Wechat application - add username ,password checking and idenfy the active voters of the post"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,410,249
net_rshares10,407,652,263
author_curate_reward""
vote details (5)
@utopian-io ·
### Hey @cha0s0000! Thank you for the great work you've done!
We're already looking forward to your next contribution!
#### Fully Decentralized Rewards
We hope you will take the time to share your expertise and knowledge by rating contributions made by others on Utopian.io to help us reward the best contributions together.
#### Utopian Witness!
<a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a> We are made of developers, system administrators, entrepreneurs, artists, content creators, thinkers. We embrace every nationality, mindset and belief.

**Want to chat? Join us on Discord https://discord.me/utopian-io**
properties (22)
authorutopian-io
permlinkre-cha0s0000-microsteemit-on-wechat-application-add-username-password-checking-and-idenfy-the-active-voters-of-the-post-20180428t150115365z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-28 15:01:30
last_update2018-04-28 15:01:30
depth1
children0
last_payout2018-05-05 15:01:30
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_length689
author_reputation152,955,367,999,756
root_title"MicroSteemit on Wechat application - add username ,password checking and idenfy the active voters of the post"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,658,508
net_rshares0