English . Indonesia . india
JSON is used to change the json api code into the list code we want, usually the json api link is a list text provided by the website provider.

CODEIO Json writing format

<json> setting || content </json>

You can fill in the settings section with the following parameters using a comma separator "," for example txt=fill in json above, jlist=items

  1. txt=json code example: text={success: "true", failed: "false"}
  2. url=json api link example: url=http: //example.com/yourapitoken
  3. jlist=json selector functions as which json we want to make the looping list (leave blank for detail json mode) for example: jlist=items or jlist=kind|item for further
  4. s=select number functions to select and display only 1 contents of json for example: s=1

You can fill in the content section with the following code list

  1. %jsn(var)% - displays the first json data
  2. %jsn(var|var)% - displays the second json data
  3. %jsn(var|var|var)% - displays the third json data
  4. %jsn(var|var|var|var)% - displays the fourth json data

Example if the json code is

{"success": "true", "failed": "false"}
whereas we want to retrieve the contents of success then the code is
%jsn(success)% then the output is true according to the json code

The second example is if the json code types like this

{"success": {"name": "eldio"}}
or
{"success": [{"name": "eldio"}]}

use this code %jsn(success|name)%

json list example

if the json code looks like this
{ "status" : "success", "items" : [{ "kind" : "oke", "id" : { "videoId" : "ewr4r4r" } }] }
  1. <json>txt=fill in json above ,jlist=items||%jsn(kind)%<br /></json> result "oke"
  2. <json>txt=fill in json above ,jlist=items||%jsn(kind|id)%<br /></json> result "ewr4r4r"