create account

MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server by cha0s0000

View this thread on: hive.blogpeakd.comecency.com
· @cha0s0000 · (edited)
$219.68
MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server
# 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

### **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?

- create the back-end server with Express Node.js
- fix the showing of the current tag item on post page
- add delete icon to remove the current tag on post page
- add long tap to save into the favorite list
- add showing pending payout  by clicking
- add showing voter lists by clicking
- add clicking into category to navigate to post page while setting the current tag is the specific one
- add clicking on the author to show profile

---

## How did you implement it/them?

- ### build up back-end server with Express

  1. calling Express to monitor the http request to the server from the 3000 port 

     ``file path :back-endServer/app.js ``

     ```
     var app = require('express')();
     // set request port
     app.set('port',(process.env.PORT || 3000));
     // set file /routes/index as the route controller
     // file routes/index take charge of distributing the route
     var routes = require('./routes/index');
     routes(app);
     // monitor the port when start the server
     app.listen(app.get('port'),function(){
     	console.log('Server listening on port:',app.get('port'));
     });

     ```

     open browser then input the url: **127.0.0.1:3000**  to test it 

     ![图片.png](https://cdn.utopian.io/posts/2d70a39d0e879140206d56dc8111a03809f2图片.png)

     ---

     2.create route distribution module

     ``file path :back-endServer/routes/index.js ``

     ```
     module.exports = function(app){
     	var post = require('../api/post');
     	app.use('/post',post);
     	var tag = require('../api/tag');
     	app.use('/tag',tag);
     	var account = require('../api/account');
     	app.use('/account',account);
     	var general = require('../api/general');
     	app.use('/general',general);
     };
     ```

     monitor the api then distribute to different module to deal with the request

     ---

     3.create homologous modules including post module , account module ,account module and general module

     ``file path :back-endServer/api/post.js ``

     ```
     var express = require('express');
     var router = express.Router();
     var steem = require('steem');

     // deal with GET request
     router.get('/get_discussions_by_trending', function(req, res) {
     	steem.api.getDiscussionsByTrending(JSON.parse(req.query.query), function(err, result) {
     	  res.send(result).end();
     	  console.log("get_discussions_by_trending:"+ req.query.query);
     	});
     });
     ```

     according to the api category , calling steemjs for request for the specific data.

     then test the api from back-end server:

     ![图片.png](https://cdn.utopian.io/posts/42d74c561c92b77a51a23734a50085a90dd9图片.png)

     print log in to console

     ![图片.png](https://cdn.utopian.io/posts/dadc2c44768077c2f52e56838ad88a02888b图片.png)

     now the existing api in my own back-end server:

     - http://127.0.0.1:3000/post/get_discussions_by_trending?query=QUERY

     - http://127.0.0.1:3000/post/get_discussions_by_created?query=QUERY

     - http://127.0.0.1:3000/post/get_discussions_by_hot?query=QUERY

     - http://127.0.0.1:3000/post/get_active_votes?author=AUTHOR&pernlink=PERMLINK

     - http://127.0.0.1:3000/post/get_discussions_by_author_before_date?author=AUTHOR&startPermlink=startPermlink&beforeDate=beforeDate&limit=limit

     - http://127.0.0.1:3000/post/get_discussions_by_comments?query=QUERY

     - http://127.0.0.1:3000/post/get_content?author=AUTHOR&pernlink=PERMLINK

     - http://127.0.0.1:3000/post/get_content_replies?author=AUTHOR&pernlink=PERMLINK

     - http://127.0.0.1:3000/post/get_discussions_by_feed?query=QUERY   

       ​

     - http://127.0.0.1:3000/tag/get_trending_tags?afterTag=afterTag&limit=limit  

       ​

     - http://127.0.0.1:3000/account/get_followers?following=following&startFollower=startFollower&followType=followType&limit=limit

     - http://127.0.0.1:3000/account/get_following?follower=follower&startFollowing=startFollowing&followType=followType&limit=limit

     - http://127.0.0.1:3000/account/get_follow_count?account=account

     - http://127.0.0.1:3000/account/get_account_votes?voter=voter  

       ​

     - http://127.0.0.1:3000/general/get_state

     - http://127.0.0.1:3000/general/get_dynamic_global_properties

       ​

---

## Screenshots of new features

![GIF.gif](https://cdn.utopian.io/posts/c443b0935a092a6a634c49582908548cd922GIF.gif)![GIF.gif](https://cdn.utopian.io/posts/ea07e5f96f942175d62dbdf0dc29b37ef160GIF.gif)



---

## Commits on github about the new features 

- https://github.com/Cha0s0000/MicroSteemit/commit/b93a622b464f76c96302b30692b4840cf7b41c36

   For the restriction in Wechat , we must have own server to request for all data .

- https://github.com/Cha0s0000/MicroSteemit/commit/3552a6e9f681d7a15630a2ef336adf6c3b9dc6a6

   1.fix the showing of the current tag item
   2.add delete icon to remove the current tag

- https://github.com/Cha0s0000/MicroSteemit/commit/23412c8fbc06fb8f4aecae84aecb38b7472f9e5a

   1.add long tap to save into the favorite list
   2.add showing pending payout  by clicking
   3.add showing voter lists by clicking

- https://github.com/Cha0s0000/MicroSteemit/commit/1eb59ec969593dd408cf548a2732072efa637394

   1.add clicking into category to navigate to post page while setting the current tag is the specific one

   2.add clicking on the author to show profile

---

## Roadmap

- show more detail of steem ,sbd and other coins price
- complete the back-end server 
- add login function
- Add more function like transfer,chat and so on.
- 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-fix-post-feed-page-and-build-up-the-back-end-server">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 176 others
properties (23)
authorcha0s0000
permlinkmicrosteemit-on-wechat-application-fix-post-feed-page-and-build-up-the-back-end-server
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/25","id":184008118,"html_url":"https://github.com/Cha0s0000/MicroSteemit/pull/25","diff_url":"https://github.com/Cha0s0000/MicroSteemit/pull/25.diff","patch_url":"https://github.com/Cha0s0000/MicroSteemit/pull/25.patch","issue_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/25","number":25,"state":"closed","locked":false,"title":"comlpete feed and post page for showiong much better","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.fix the showing of the current tag item on post page\r\n2.add delete icon to remove the current tag on post page\r\n3.add long tap to save into the favorite list\r\n4.add showing pending payout by clicking\r\n5.add showing voter lists by clicking\r\n6. add clicking into category to navigate to post page while setting the current tag is the specific one\r\n7.add clicking on the author to show profile","created_at":"2018-04-25T11:45:10Z","updated_at":"2018-04-25T11:45:43Z","closed_at":"2018-04-25T11:45:43Z","merged_at":"2018-04-25T11:45:43Z","merge_commit_sha":"d0e5f7d58aa028c8b36cc33d854ad5ea897cacd3","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/25/commits","review_comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/25/comments","review_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/25/comments","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/1eb59ec969593dd408cf548a2732072efa637394","head":{"label":"Cha0s0000:update-info-page","ref":"update-info-page","sha":"1eb59ec969593dd408cf548a2732072efa637394","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-25T12:36:10Z","pushed_at":"2018-04-25T12:36:09Z","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":634,"stargazers_count":5,"watchers_count":5,"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":5,"default_branch":"master"}},"base":{"label":"Cha0s0000:master","ref":"master","sha":"1591636eef90a999f484e1945b4bb4b7e723a107","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-25T12:36:10Z","pushed_at":"2018-04-25T12:36:09Z","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":634,"stargazers_count":5,"watchers_count":5,"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":5,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/25"},"html":{"href":"https://github.com/Cha0s0000/MicroSteemit/pull/25"},"issue":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/25"},"comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/25/comments"},"review_comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/25/comments"},"review_comment":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/25/commits"},"statuses":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/1eb59ec969593dd408cf548a2732072efa637394"}},"author_association":"OWNER"},{"url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/24","id":183976471,"html_url":"https://github.com/Cha0s0000/MicroSteemit/pull/24","diff_url":"https://github.com/Cha0s0000/MicroSteemit/pull/24.diff","patch_url":"https://github.com/Cha0s0000/MicroSteemit/pull/24.patch","issue_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/24","number":24,"state":"closed","locked":false,"title":"create back-end server with Express Node.js","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":"For the restriction in Wechat , we must have own server to request for all data .","created_at":"2018-04-25T09:36:43Z","updated_at":"2018-04-25T09:36:53Z","closed_at":"2018-04-25T09:36:53Z","merged_at":"2018-04-25T09:36:53Z","merge_commit_sha":"1591636eef90a999f484e1945b4bb4b7e723a107","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/24/commits","review_comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/24/comments","review_comment_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}","comments_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/24/comments","statuses_url":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/b93a622b464f76c96302b30692b4840cf7b41c36","head":{"label":"Cha0s0000:useOwnServer","ref":"useOwnServer","sha":"b93a622b464f76c96302b30692b4840cf7b41c36","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-25T12:36:10Z","pushed_at":"2018-04-25T12:36:09Z","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":634,"stargazers_count":5,"watchers_count":5,"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":5,"default_branch":"master"}},"base":{"label":"Cha0s0000:master","ref":"master","sha":"1c33a7e8ad4f16e2fceac69e0d28a6c84cad700f","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-25T12:36:10Z","pushed_at":"2018-04-25T12:36:09Z","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":634,"stargazers_count":5,"watchers_count":5,"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":5,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/24"},"html":{"href":"https://github.com/Cha0s0000/MicroSteemit/pull/24"},"issue":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/24"},"comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/issues/24/comments"},"review_comments":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/24/comments"},"review_comment":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/pulls/24/commits"},"statuses":{"href":"https://api.github.com/repos/Cha0s0000/MicroSteemit/statuses/b93a622b464f76c96302b30692b4840cf7b41c36"}},"author_association":"OWNER"}],"platform":"github","type":"development","tags":["utopian-io","microsteemit","steem","steem-app","cn"],"links":["https://cdn.utopian.io/posts/2d70a39d0e879140206d56dc8111a03809f2图片.png","https://cdn.utopian.io/posts/42d74c561c92b77a51a23734a50085a90dd9图片.png","https://cdn.utopian.io/posts/dadc2c44768077c2f52e56838ad88a02888b图片.png","https://cdn.utopian.io/posts/c443b0935a092a6a634c49582908548cd922GIF.gif","https://cdn.utopian.io/posts/ea07e5f96f942175d62dbdf0dc29b37ef160GIF.gif"],"image":["https://cdn.utopian.io/posts/2d70a39d0e879140206d56dc8111a03809f2图片.png","https://cdn.utopian.io/posts/42d74c561c92b77a51a23734a50085a90dd9图片.png","https://cdn.utopian.io/posts/dadc2c44768077c2f52e56838ad88a02888b图片.png","https://cdn.utopian.io/posts/c443b0935a092a6a634c49582908548cd922GIF.gif","https://cdn.utopian.io/posts/ea07e5f96f942175d62dbdf0dc29b37ef160GIF.gif"],"moderator":{"account":"justyy","time":"2018-04-25T14:25:42.449Z","pending":false,"reviewed":true,"flagged":false},"questions":{"voters":["justyy"],"answers":[{"question_id":"dev-1","answer_id":"dev-1-a-2","user":"justyy","influence":75},{"question_id":"dev-2","answer_id":"dev-2-a-2","user":"justyy","influence":75},{"question_id":"dev-3","answer_id":"dev-3-a-1","user":"justyy","influence":75},{"question_id":"dev-4","answer_id":"dev-4-a-2","user":"justyy","influence":75},{"question_id":"dev-5","answer_id":"dev-5-a-2","user":"justyy","influence":75},{"question_id":"dev-6","answer_id":"dev-6-a-1","user":"justyy","influence":75},{"question_id":"dev-7","answer_id":"dev-7-a-1","user":"justyy","influence":75}],"total_influence":0,"most_rated":[{"question_id":"dev-1","answer_id":"dev-1-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-2","answer_id":"dev-2-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-3","answer_id":"dev-3-a-1","influence":75,"voters":["justyy"]},{"question_id":"dev-4","answer_id":"dev-4-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-5","answer_id":"dev-5-a-2","influence":75,"voters":["justyy"]},{"question_id":"dev-6","answer_id":"dev-6-a-1","influence":75,"voters":["justyy"]},{"question_id":"dev-7","answer_id":"dev-7-a-1","influence":75,"voters":["justyy"]}]},"score":82.75,"total_influence":75,"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-25 12:40:15
last_update2018-04-25 14:25:45
depth0
children6
last_payout2018-05-02 12:40:15
cashout_time1969-12-31 23:59:59
total_payout_value159.552 HBD
curator_payout_value60.124 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8,984
author_reputation30,983,518,016,225
root_title"MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,058,434
net_rshares38,503,549,583,194
author_curate_reward""
vote details (240)
@beckysophie ·
Nice work Sir......... 

Hope one day, the world will hear about microsteemit 

👍 
properties (22)
authorbeckysophie
permlinkre-cha0s0000-microsteemit-on-wechat-application-fix-post-feed-page-and-build-up-the-back-end-server-20180426t064018156z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-26 06:40:24
last_update2018-04-26 06:40:24
depth1
children0
last_payout2018-05-03 06:40:24
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_length82
author_reputation4,508,855,756,294
root_title"MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,204,312
net_rshares0
@cnbuddy ·
你好!cn区点赞机器人 @cnbuddy 这厢有礼了。倘若你想让我隐形,请回复“取消”。
properties (22)
authorcnbuddy
permlinkre-cha0s0000-microsteemit-on-wechat-application-fix-post-feed-page-and-build-up-the-back-end-server-20180425t130558889z
categoryutopian-io
json_metadata""
created2018-04-25 13:06:00
last_update2018-04-25 13:06:00
depth1
children0
last_payout2018-05-02 13:06: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_length44
author_reputation-1,449,160,991,441
root_title"MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,062,514
net_rshares0
@justyy ·
$0.04
Thank you for your contribution. So you need this back-end server for MicroSteemit to work?

----------------------------------------------------------------------
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-fix-post-feed-page-and-build-up-the-back-end-server-20180425t142511870z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-25 14:25:12
last_update2018-04-25 14:25:12
depth1
children1
last_payout2018-05-02 14:25:12
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_length333
author_reputation280,616,224,641,976
root_title"MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,075,638
net_rshares9,299,831,216
author_curate_reward""
vote details (4)
@cha0s0000 · (edited)
thank you .  
sure . it will be finished step by step
properties (22)
authorcha0s0000
permlinkre-justyy-re-cha0s0000-microsteemit-on-wechat-application-fix-post-feed-page-and-build-up-the-back-end-server-20180425t142945452z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-25 14:29:45
last_update2018-04-25 14:31:30
depth2
children0
last_payout2018-05-02 14:29: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_length53
author_reputation30,983,518,016,225
root_title"MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server"
beneficiaries
0.
accountutopian.pay
weight1,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,076,359
net_rshares0
@steemitboard ·
Congratulations @cha0s0000! You have completed some achievement on Steemit and have been rewarded with new badge(s) :

[![](https://steemitimages.com/70x80/http://steemitboard.com/notifications/voted.png)](http://steemitboard.com/@cha0s0000) Award for the number of upvotes received

Click on any badge to view your own Board of Honor on SteemitBoard.

To support your work, I also upvoted your post!
For more information about SteemitBoard, click [here](https://steemit.com/@steemitboard)

If you no longer want to receive notifications, reply to this comment with the word `STOP`

> Upvote this notification to help all Steemit users. Learn why [here](https://steemit.com/steemitboard/@steemitboard/http-i-cubeupload-com-7ciqeo-png)!
properties (22)
authorsteemitboard
permlinksteemitboard-notify-cha0s0000-20180426t032536000z
categoryutopian-io
json_metadata{"image":["https://steemitboard.com/img/notifications.png"]}
created2018-04-26 03:25:36
last_update2018-04-26 03:25:36
depth1
children0
last_payout2018-05-03 03:25:36
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_length735
author_reputation38,975,615,169,260
root_title"MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,179,247
net_rshares0
@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-fix-post-feed-page-and-build-up-the-back-end-server-20180427t125600486z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-04-27 12:56:03
last_update2018-04-27 12:56:03
depth1
children0
last_payout2018-05-04 12:56: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_length689
author_reputation152,955,367,999,756
root_title"MicroSteemit on Wechat application - fix post ,feed page and build up the back-end server"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id52,450,799
net_rshares0