I am trying to use bing search API and i got result in JSON format, now i want get particular node value from that JSON result like(url, displayurl, snippet etc).
This is the JSON result format i got
JSON Response:
{
"_type": "SearchResponse",
"queryContext": {
"originalQuery": "infokart India Pvt. Ltd."
},
"webPages": {
"webSearchUrl": "https://www.bing.com/search?q=infokart+India+Pvt.+Ltd.",
"totalEstimatedMatches": 12200000,
"value": [
{
"id": "https://api.cognitive.microsoft.com/api/v7/#WebPages.0",
"name": "Infokart India Pvt. Ltd.",
"url": "http://infokartindia.com/",
"isFamilyFriendly": true,
"displayUrl": "infokartindia.com",
"snippet": "Journals Subscription Services,International Subscription Agency,Experiences subscription agency",
"dateLastCrawled": "2018-07-24T11:49:00.0000000Z",
"language": "en"
}
]
},
"rankingResponse": {
"mainline": {
"items": [
{
"answerType": "WebPages",
"resultIndex": 0,
"value": {
"id": "https://api.cognitive.microsoft.com/api/v7/#WebPages.0"
}
}
]
}
}
}
Please suggest!!