Hey Can anyone send Me JSON Tool extension

i need JSON Tool extension so please if anyone have it then share it to me it’s not available in thunkable official site

There is no need for JSON extensions anymore, since they have evolved into dictionaries in AppInventor.

  1. Convert JSON to dictionary or vice versa using the Json blocks in the Web component and;
  1. Use the built-in dictionary blocks.
1 Like

for example,consider this json string
{"type":"bar","data":{"labels":["Q1","Q2","Q3","Q4"],"datasets":[{"label":"sales","data":["91","60","70","100"]},{"label":"profit","data":["78","80","78","90"]}]},"options":{"scales":{"yAxes":{"stacked":true},"xAxes":{"stacked":true}}}}

is represented in niotron as a dictionary of dictionaries or lists or basic items. here’s the block.

if you want to see the structure of the json string in a vertical orientation, copy the full json string above and paste it to the left hand panel on this site:

1 Like