You are viewing a single comment's thread from:
RE: Live Coding Javascript Steem-js
There are a lot of fields like that. They were used at one point, but are deprecated now and no longer contain the data you need. I recommend using account history. https://utopian.io/utopian-io/@r351574nc3/tutorial-viewing-steemit-account-history
You will want to
- iterate through the history for
comment
operation. - look for
json_metadata
for eachcomment
- Pull
tags
fromjson_metadata
. Here's an example ofjson_metadata
.
operations: [
[ "comment",
{
"json_metadata": "{ \"tags\": [ \"blog\" ], \"app\": \"steemit/1.0\" }"
}
]
]
Hope that helps.
Wow, thank you so much! I will be doing some coding tonight and will let you know how it goes!