Hi All,
I am trying to consume a news app API. all I am trying to do is setting the URL of API (includes the key) and fetching the image of first news article on an image component. Not sure what is going wrong and Thunkable on running the app doesn’t even shows the error but goes blank instead (super irritating as how we are suppose to debug if something is not right).
URL of API with Key:
http://newsapi.org/v2/top-headlines?sources=google-news-in &apiKey=0d9cacd76c4a49ffa0f295214bcbdea8
Thunkable blocks:
JSON Viewer:
API JSON response:
{
“status”: “ok”,
“totalResults”: 9,
“articles”: [
{
“source”: {
“id”: “google-news-in”,
“name”: “Google News (India)”
},
“author”: “Kumar Shakti Shekhar”,
“title”: “Gujarat local body election results: BJP reigns supreme, Congress slides as AAP rises”,
“description”: “India News: The counting for the Gujarat local body elections on Tuesday has thrown up almost the same results as those of the municipal corporation polls declare”,
“url”: “Gujarat local body election results: BJP reigns supreme, Congress slides as AAP rises | India News - Times of India”,
“urlToImage”: “https://static.toiimg.com/thumb/msid-81296985,width-1070,height-580,imgsize-233016,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg”,
“publishedAt”: “2021-03-02T16:20:00+00:00”,
“content”: “Results of the Nagar Palika, Taluka Panchayat and District Panchayat polls across Gujarat give a crystal clear mess https://t.co/dJERzTyu5X\r\n— Narendra Modi (@narendramodi) 1614687609000”
},
{
“source”: {
“id”: “google-news-in”,
“name”: “Google News (India)”
},
“author”: “Radhika Ramaseshan”,
“title”: “Will Bengal, Tamil Nadu put a spanner in the BJP’s well-oiled election machinery?”,
“description”: “India News: Unlike the Congress, which was happy as long as it dominated Delhi, the BJP believes in a clean sweep both at the Centre and the states.”,
“url”: “https://timesofindia.indiatimes.com/india/will-bengal-tamil-nadu-put-a-spanner-in-the-bjps-well-oiled-election-machinery/articleshow/81275896.cms”,
“urlToImage”: “https://static.toiimg.com/thumb/msid-81275870,width-1070,height-580,imgsize-1,resizemode-75,overlay-toi_sw,pt-32,y_pad-40/photo.jpg”,
“publishedAt”: “2021-03-01T13:29:00+00:00”,
“content”: “India News: Unlike the Congress, which was happy as long as it dominated Delhi, the BJP believes in a clean sweep both at the Centre and the states.”
}
]
}
Looking forward to positive response!