Tasks API implementation into the PHP Client for Makerlog ------ <center>  </center> In my spare time I build a PHP client for Makerlog. Makerlog is the dead-simple task log that helps you stay productive and ship faster. There you can meet other makers and share your progress. At the moment there is no PHP client, so I decided to change this a few weeks ago. Today I integrated the basic Task API into the client. #### Repository - https://github.com/pcsg/pcsg-makerlog-php-client - Licence: GPL-3.0+ ### New Features - What feature(s) did you add? Almost the complete Task API - How did you implement it/them? The implementation is done with the following commits - [feat: new sync method; feat: started new Task Object; feat: /issues/4](https://github.com/pcsg/pcsg-makerlog-php-client/commit/4b8447f043478549482432e3d8a7b1794dcf5856) - [feat: create tasks](https://github.com/pcsg/pcsg-makerlog-php-client/commit/4d53aeca0b9aa80f18ce86f1444bc8aeae026463) - [feat: delete a task](https://github.com/pcsg/pcsg-makerlog-php-client/commit/d5c630bcff2c6b0e44bf58f98a559bcbcb68976f) - [feat: getter and task data integrated](https://github.com/pcsg/pcsg-makerlog-php-client/commit/c1936dd9fc0cbaea65e3b5be38474d6720ef9b24) In addition, I have written a basic documentation so that you can use it. - [docs: task doku](https://github.com/pcsg/pcsg-makerlog-php-client/commit/4e48bb8f7dfadc936a652136202d3c2e805ba5bc) - [docs: create a new task](https://github.com/pcsg/pcsg-makerlog-php-client/commit/0a6ce184dacf91a2f0eddab73e230b34f46bdfb0) Since documentation is more important to most people than the implementation of the client. Let me give you an overview how to use the client. - Basically there is a central `Tasks` object which can be used to get Tasks and which can be used to create Tasks. - Additionally there is the single `Task`. ###### How to get the main Tasks Object The main Tasks object is directly available via the makerlog client ``` <?php use PCSG\Makerlog\Makerlog; $Makerlog = new Makerlog([ 'client_id' => 'YOUR_CLIENT_ID', 'client_secret' => 'YOUR_CLIENT_SECRET', 'access_token' => 'ACCESS_TOKEN_FROM_THE_USER' ]); $Tasks = $Makerlog->getTasks(); ``` ###### Create a Task To create a new task, you must use the tasks object. *For the sake of simplicity I assume that the makerlog object is already instantiated and in my examples I won't do that again.* ``` <?php $Makerlog->getTasks()->createTask('COUR CONTENT', $options); ``` The options of a task are optional but can have the following values: ``` <?php $options = [ "done" => false, // bool "in_progress" => false // bool ]; ``` ###### Get tasks Returns a list of all tasks in Makerlog. ``` <?php $list = $Makerlog->getTasks()->getList(); ``` ###### Get a task A single task can be received via its id ``` <?php $task = $Makerlog->getTasks()->get(892); // get task via ID ``` With a normal task which has been received via get(), no operations can be executed. If you want to change the task, you should get a task object. This can be done via getTaskAsObject(). ``` <?php $Task = $Makerlog->getTasks()->getTaskAsObject(892); // get task via ID // delete the task $Task->delete(); // praise the task $Task->praise(100); ``` A task object has several getter methods, so it is quite easy to access the data of the task. ``` <?php $Task = $Makerlog->getTasks()->getTaskAsObject(892); // get task via ID // main data $Task->getId(); $Task->getContent(); // dates $Task->getCreationDate(); $Task->getDoneDate(); $Task->getLastUpdateDate(); $Task->getCommentCount(); // is methods $Task->isDone(); // returns true if the task is done $Task->isInProgress(); // returns true if the task is in progress ``` #### GitHub Account - https://github.com/dehenne Makerlog and the client itself is still at the beginning. Many functions are still missing. But if you want to use the client, you can have a look at the [examples](https://github.com/pcsg/pcsg-makerlog-php-client/tree/master/examples). With the changes and features of today it is now possible to create, delete tasks, praise other tasks and read tasks. :-) Have fun in Makerlog and thanks for reading, Hen
author | dehenne |
---|---|
permlink | tasks-api-implementation-into-the-php-client-for-makerlog |
category | utopian-io |
json_metadata | {"tags":["utopian-io","development"],"image":["https://github.com/pcsg/pcsg-makerlog-php-client/raw/master/makerlog-php-client.png"],"links":["https://github.com/pcsg/pcsg-makerlog-php-client","https://github.com/pcsg/pcsg-makerlog-php-client/commit/4b8447f043478549482432e3d8a7b1794dcf5856","https://github.com/pcsg/pcsg-makerlog-php-client/commit/4d53aeca0b9aa80f18ce86f1444bc8aeae026463","https://github.com/pcsg/pcsg-makerlog-php-client/commit/d5c630bcff2c6b0e44bf58f98a559bcbcb68976f","https://github.com/pcsg/pcsg-makerlog-php-client/commit/c1936dd9fc0cbaea65e3b5be38474d6720ef9b24","https://github.com/pcsg/pcsg-makerlog-php-client/commit/4e48bb8f7dfadc936a652136202d3c2e805ba5bc","https://github.com/pcsg/pcsg-makerlog-php-client/commit/0a6ce184dacf91a2f0eddab73e230b34f46bdfb0","https://github.com/dehenne","https://github.com/pcsg/pcsg-makerlog-php-client/tree/master/examples"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-03-09 15:30:21 |
last_update | 2019-03-09 15:36:03 |
depth | 0 |
children | 6 |
last_payout | 2019-03-16 15:30:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 35.044 HBD |
curator_payout_value | 11.208 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,342 |
author_reputation | 8,032,043,781,732 |
root_title | "Tasks API implementation into the PHP Client for Makerlog" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,970,285 |
net_rshares | 64,929,736,942,612 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
tombstone | 0 | 4,305,742,136,086 | 18.22% | ||
justyy | 0 | 233,142,326,673 | 10% | ||
techslut | 0 | 83,376,866,790 | 20% | ||
minersean | 0 | 7,540,626,806 | 75% | ||
erikaflynn | 0 | 15,817,756,200 | 35% | ||
elviento | 0 | 1,817,323,505 | 3% | ||
detlev | 0 | 4,979,724,255 | 2% | ||
miniature-tiger | 0 | 109,866,918,978 | 50% | ||
jakipatryk | 0 | 14,976,379,345 | 50% | ||
jga | 0 | 2,686,785,238 | 22.77% | ||
yehey | 0 | 3,474,756,748 | 10% | ||
helo | 0 | 84,841,431,960 | 38.17% | ||
walnut1 | 0 | 46,140,301,426 | 22.77% | ||
lorenzor | 0 | 1,286,332,198 | 11.38% | ||
pinoy | 0 | 111,377,514 | 10% | ||
suesa | 0 | 118,487,414,834 | 25% | ||
codingdefined | 0 | 28,178,494,254 | 20% | ||
tsoldovieri | 0 | 1,659,328,733 | 11.38% | ||
bachuslib | 0 | 20,074,003,179 | 100% | ||
tykee | 0 | 12,535,020,036 | 22.77% | ||
iamphysical | 0 | 15,751,667,822 | 90% | ||
felixrodriguez | 0 | 859,604,410 | 7.96% | ||
leir | 0 | 2,137,881,029 | 50% | ||
azulear | 0 | 507,490,572 | 100% | ||
silviu93 | 0 | 5,557,736,214 | 22.77% | ||
espoem | 0 | 142,457,525,133 | 75% | ||
mcfarhat | 0 | 28,339,529,525 | 15.26% | ||
vishalsingh4997 | 0 | 198,811,327 | 22.77% | ||
loshcat | 0 | 2,552,360,751 | 100% | ||
elear | 0 | 7,081,155,483 | 45.55% | ||
zoneboy | 0 | 11,365,783,116 | 50% | ||
carloserp-2000 | 0 | 31,366,346,568 | 100% | ||
carlos84 | 0 | 1,456,537,186 | 22.77% | ||
che-shyr | 0 | 902,148,451 | 50% | ||
utopian-io | 0 | 57,334,905,144,489 | 45.55% | ||
jaff8 | 0 | 84,629,334,218 | 38.17% | ||
newsrx | 0 | 184,202,953 | 11.87% | ||
amestyj | 0 | 556,093,354 | 11.38% | ||
sandracarrascal | 0 | 78,247,849 | 22.77% | ||
ajayyy | 0 | 665,337,288 | 11.38% | ||
greenorange | 0 | 547,528,001 | 100% | ||
ravenruis | 0 | 16,920,257,672 | 75% | ||
mcyusuf | 0 | 2,202,083,286 | 22.77% | ||
alexs1320 | 0 | 63,932,083,109 | 51% | ||
ivymalifred | 0 | 388,367,431 | 11.38% | ||
aussieninja | 0 | 8,858,354,922 | 22.77% | ||
ennyta | 0 | 179,483,868 | 11.38% | ||
vjap55 | 0 | 820,970,188 | 100% | ||
amosbastian | 0 | 119,030,241,673 | 38.17% | ||
eliaschess333 | 0 | 2,183,941,174 | 11.38% | ||
tdre | 0 | 80,565,555,431 | 100% | ||
ydavgonzalez | 0 | 319,452,123 | 1.13% | ||
stuffbyspencer | 0 | 2,794,303,546 | 100% | ||
asaj | 0 | 17,639,368,362 | 100% | ||
scienceangel | 0 | 70,375,588,032 | 50% | ||
jjay | 0 | 501,011,741 | 100% | ||
vanarchist | 0 | 2,718,709,927 | 100% | ||
sargoon | 0 | 1,032,352,767 | 22.77% | ||
tobias-g | 0 | 133,805,971,839 | 40% | ||
yrmaleza | 0 | 64,558,146 | 11.38% | ||
miguelangel2801 | 0 | 142,746,326 | 11.38% | ||
didic | 0 | 34,268,308,769 | 25% | ||
emiliomoron | 0 | 795,101,248 | 11.38% | ||
ulisesfl17 | 0 | 1,799,504,891 | 100% | ||
arac | 0 | 987,909,007 | 100% | ||
endopediatria | 0 | 119,670,900 | 4.55% | ||
tomastonyperez | 0 | 2,505,741,153 | 11.38% | ||
elvigia | 0 | 2,301,065,345 | 11.38% | ||
ezravandi | 0 | 4,800,127,654 | 1.5% | ||
luiscd8a | 0 | 1,640,018,388 | 80% | ||
eniolw | 0 | 7,997,737,053 | 100% | ||
geadriana | 0 | 107,848,186 | 3.41% | ||
elpdl | 0 | 72,989,177 | 22.77% | ||
josedelacruz | 0 | 1,059,156,237 | 11.38% | ||
joseangelvs | 0 | 364,541,193 | 22.77% | ||
viannis | 0 | 327,895,964 | 11.38% | ||
feronio | 0 | 1,184,191,706 | 100% | ||
flores39 | 0 | 397,591,229 | 100% | ||
erickyoussif | 0 | 947,119,583 | 22.77% | ||
pcsg-dev | 0 | 2,090,269,005 | 100% | ||
ryuna.siege | 0 | 208,873,795 | 100% | ||
anaestrada12 | 0 | 3,880,513,083 | 22.77% | ||
moneybaby | 0 | 97,276,179 | 5% | ||
joelsegovia | 0 | 654,012,219 | 11.38% | ||
wolfguards | 0 | 5,039,892,470 | 100% | ||
jesusfl17 | 0 | 403,285,582 | 100% | ||
bflanagin | 0 | 3,832,704,055 | 22.77% | ||
dalz | 0 | 7,113,865,436 | 18.22% | ||
ulockblock | 0 | 55,592,296,704 | 17.44% | ||
amart29 | 0 | 417,303,450 | 5.69% | ||
reinaseq | 0 | 1,367,829,387 | 22.77% | ||
simpwendoubtli | 0 | 531,064,088 | 100% | ||
rubenp | 0 | 71,948,453 | 22.77% | ||
jeferc | 0 | 71,271,495 | 22.77% | ||
nieloagranca | 0 | 576,067,911 | 4% | ||
mackenziek | 0 | 522,135,554 | 100% | ||
victoriau7tp | 0 | 497,241,294 | 100% | ||
jennifer07908 | 0 | 509,009,304 | 100% | ||
steemchoose | 0 | 3,309,131,388 | 1.5% | ||
dssdsds | 0 | 3,474,325,986 | 22.77% | ||
anna1lp9 | 0 | 531,225,170 | 100% | ||
jayplayco | 0 | 108,236,296,206 | 22.77% | ||
cryptouno | 0 | 475,340,144 | 5% | ||
lupafilotaxia | 0 | 14,135,510,823 | 100% | ||
fran.frey | 0 | 378,599,431 | 11.38% | ||
alaiza | 0 | 454,435,715 | 100% | ||
mops2e | 0 | 907,417,184 | 60% | ||
jrevilla | 0 | 130,845,360 | 22.77% | ||
kylieerts | 0 | 511,127,049 | 100% | ||
tayloruo1 | 0 | 532,227,630 | 100% | ||
ellalz6 | 0 | 520,456,683 | 100% | ||
trisquelwhare | 0 | 4,055,453,386 | 100% | ||
swapsteem | 0 | 2,129,105,546 | 22.77% | ||
stem-espanol | 0 | 13,401,279,004 | 22.77% | ||
lapp | 0 | 456,687,923 | 100% | ||
steemtpistia | 0 | 456,184,814 | 100% | ||
crassipes | 0 | 456,420,425 | 100% | ||
aleestra | 0 | 508,278,110 | 22.77% | ||
progsernaro | 0 | 530,898,763 | 100% | ||
outgustipit | 0 | 488,623,418 | 100% | ||
tabnohaggu | 0 | 531,302,030 | 100% | ||
profupuvrit | 0 | 531,076,749 | 100% | ||
agrovision | 0 | 456,687,746 | 100% | ||
steem-ua | 0 | 1,292,765,711,839 | 11.87% | ||
giulyfarci52 | 0 | 203,024,736 | 11.38% | ||
teamcr | 0 | 826,396,351 | 100% | ||
alex-hm | 0 | 1,150,127,417 | 50% | ||
wilmer14molina | 0 | 74,886,786 | 22.77% | ||
moyam | 0 | 73,263,545 | 22.77% | ||
balcej | 0 | 73,246,692 | 22.77% | ||
anaka | 0 | 72,665,363 | 22.77% | ||
benhurg | 0 | 73,263,129 | 22.77% | ||
judisa | 0 | 72,799,909 | 22.77% | ||
juddarivv | 0 | 73,263,877 | 22.77% | ||
kakakk | 0 | 3,409,928,335 | 22.77% | ||
mrsbozz | 0 | 232,497,504 | 7% | ||
ascorphat | 0 | 1,959,772,684 | 2.5% | ||
rewarding | 0 | 6,706,701,148 | 72.77% | ||
bejust | 0 | 1,962,654,420 | 100% | ||
jk6276.mons | 0 | 2,008,645,510 | 45.55% | ||
progressing | 0 | 1,773,012,111 | 100% | ||
jaxson2011 | 0 | 1,747,961,189 | 45.55% | ||
eternalinferno | 0 | 223,793,460 | 45.55% | ||
boby400 | 0 | 0 | 100% | ||
utopian.trail | 0 | 18,189,840,717 | 45.55% |
Thank you for your contribution. 1. The build is failing on the github page. 2. It would be nice to have some unit tests to cover the new classes you added. 3. The `refresh()` is actually clearing the caching (doesn't do what exactly it says), it would be better to move (or re-organise) the correct logics e.g the code in `getTaskdata` into this function. 4. Often, the chainning such as `$this->Makerlog->getRequest()->get('/tasks/sync/');` is a code smell, because something may be null in the middle, try to have `if null` check, then throw exception accordingly. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2-2-2-2-2-2-1-). ---- Need help? Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | justyy |
---|---|
permlink | re-dehenne-tasks-api-implementation-into-the-php-client-for-makerlog-20190309t210027955z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"links":["https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2-2-2-2-2-2-1-","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2019-03-09 21:00:30 |
last_update | 2019-03-09 21:00:30 |
depth | 1 |
children | 2 |
last_payout | 2019-03-16 21:00:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.620 HBD |
curator_payout_value | 3.043 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,018 |
author_reputation | 280,616,224,641,976 |
root_title | "Tasks API implementation into the PHP Client for Makerlog" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,981,223 |
net_rshares | 17,927,792,910,688 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
happyukgo | 0 | 514,753,905 | 25% | ||
codingdefined | 0 | 28,467,999,211 | 20% | ||
superbing | 0 | 2,504,625,987 | 25% | ||
dailyfortune | 0 | 36,914,896 | 25% | ||
espoem | 0 | 26,673,450,966 | 15% | ||
dailystats | 0 | 7,401,511,209 | 25% | ||
utopian-io | 0 | 17,684,268,759,249 | 12.55% | ||
jaff8 | 0 | 42,107,042,879 | 19.27% | ||
amosbastian | 0 | 59,248,451,486 | 19.27% | ||
dailychina | 0 | 6,917,958,480 | 25% | ||
reazuliqbal | 0 | 17,834,030,376 | 10% | ||
amico | 0 | 1,802,024,123 | 0.6% | ||
pcsg-dev | 0 | 2,066,807,263 | 100% | ||
turtlegraphics | 0 | 2,423,856,999 | 25% | ||
ulockblock | 0 | 15,865,418,467 | 4.91% | ||
witnesstools | 0 | 2,336,932,442 | 25% | ||
ilovecoding | 0 | 2,320,252,099 | 25% | ||
curbot | 0 | 2,554,941,153 | 100% | ||
steemfuckeos | 0 | 1,513,161,110 | 25% | ||
ascorphat | 0 | 1,970,209,895 | 2.5% | ||
yff | 0 | 18,638,648,469 | 100% | ||
curatortrail | 0 | 325,160,024 | 95% |
> The build is failing on the github page. yes, there is an issue for that. it's an issue with travis-ci and i have no solution at the moment :( > The refresh() is actually clearing the caching (doesn't do what exactly it says), it would be better to move (or re-organise) the correct logics e.g the code in getTaskdata into this function. good argument. I will take to heart oh, and thanks for the improvement suggestions
author | dehenne |
---|---|
permlink | re-justyy-re-dehenne-tasks-api-implementation-into-the-php-client-for-makerlog-20190310t160303178z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2019-03-10 16:03:03 |
last_update | 2019-03-10 16:03:42 |
depth | 2 |
children | 0 |
last_payout | 2019-03-17 16:03:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 425 |
author_reputation | 8,032,043,781,732 |
root_title | "Tasks API implementation into the PHP Client for Makerlog" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,021,031 |
net_rshares | 0 |
Thank you for your review, @justyy! Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-dehenne-tasks-api-implementation-into-the-php-client-for-makerlog-20190309t210027955z-20190312t035706z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-12 03:57:09 |
last_update | 2019-03-12 03:57:09 |
depth | 2 |
children | 0 |
last_payout | 2019-03-19 03:57:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 152,955,367,999,756 |
root_title | "Tasks API implementation into the PHP Client for Makerlog" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,111,569 |
net_rshares | 0 |
#### Hi @dehenne! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-tasks-api-implementation-into-the-php-client-for-makerlog-20190309t212834z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-09 21:28:36 |
last_update | 2019-03-09 21:28:36 |
depth | 1 |
children | 0 |
last_payout | 2019-03-16 21:28:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 286 |
author_reputation | 23,214,230,978,060 |
root_title | "Tasks API implementation into the PHP Client for Makerlog" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,982,057 |
net_rshares | 0 |
#### Hi @dehenne! Your post was upvoted by @steem-ua, new Steem dApp, using UserAuthority for algorithmic post curation! Your post is eligible for our upvote, thanks to our collaboration with @utopian-io! **Feel free to join our [@steem-ua Discord server](https://discord.gg/KpBNYGz)**
author | steem-ua |
---|---|
permlink | re-tasks-api-implementation-into-the-php-client-for-makerlog-20190309t213404z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.18"}" |
created | 2019-03-09 21:34:06 |
last_update | 2019-03-09 21:34:06 |
depth | 1 |
children | 0 |
last_payout | 2019-03-16 21:34:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 286 |
author_reputation | 23,214,230,978,060 |
root_title | "Tasks API implementation into the PHP Client for Makerlog" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 80,982,243 |
net_rshares | 0 |
Hey, @dehenne! **Thanks for contributing on Utopian**. Weβre already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-tasks-api-implementation-into-the-php-client-for-makerlog-20190311t015959z |
category | utopian-io |
json_metadata | "{"app": "beem/0.20.17"}" |
created | 2019-03-11 02:00:00 |
last_update | 2019-03-11 02:00:00 |
depth | 1 |
children | 0 |
last_payout | 2019-03-18 02:00:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 589 |
author_reputation | 152,955,367,999,756 |
root_title | "Tasks API implementation into the PHP Client for Makerlog" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 81,043,277 |
net_rshares | 0 |