HI guys I basically want to parse this json data.
[
{
"id": 417862,
"name": "octokit.rb",
"full_name": "octokit/octokit.rb",
"owner": {
"login": "octokit",
"id": 3430433,
"avatar_url": "https://avatars0.githubusercontent.com/u/3430433?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/octokit",
"html_url": "https://github.com/octokit",
"followers_url": "https://api.github.com/users/octokit/followers",
"following_url": "https://api.github.com/users/octokit/following{/other_user}",
"gists_url": "https://api.github.com/users/octokit/gists{/gist_id}",
"starred_url": "https://api.github.com/users/octokit/starred{/owner}{/repo}",
"subscriptions_url":
} ]
My question is how do I get the value of "id": 417862
from json
Thanks.