Достъп до ресурсни данни чрез уеб API със силна поддръжка на заявки.. Further information in the main CKAN Data API and DataStore documentation.
Това Data API е достъпно само чрез следните действия от CKAN API за действия.
Създаване | https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_create |
---|---|
Обновяване / Вмъкване | https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_upsert |
Заявка | https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_search |
Обикновена заявка по технологията ajax (JSONP) към API на данните чрез jQuery.
var data = { resource_id: '68882a81-91b4-44cf-8703-578e34b43f7e', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://gdcatalognhic.nha.co.th/bg/api/3/action/datastore_search?limit=5&resource_id=68882a81-91b4-44cf-8703-578e34b43f7e&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()