Sort:  

https://github.com/steemit/steem/issues/3274 has more information, apparently it's a artifact from pre-hf21... Could this be updated to use posting_json_metadata with a json_metadata fallback? Or something?

 5 years ago  

posting_json_metadata requires only posting key to update but json_metadata requires active key.

What about to view it? My project site I'd like to display posting, but not sure what to call

 5 years ago (edited) 

https://developers.hive.io/apidefinitions/#database_api.find_accounts

database_api.find_accounts returns posting_json_metadata

hive.api.callAsync('database_api.find_accounts', { accounts: ['mahdiyari'] })
  .then((res) => console.log(res))

or

hive.api.call('database_api.find_accounts', { accounts: ['mahdiyari'] }, (err, res) => {
  console.log(err, res)
})

Beautiful, going to try that shortly. Appreciate the help.

Worked great, thank you again.