Prístup k zdrojom dát prostredníctvom webového API s podporou dopytovania. Viac informácií na hlavná dokumentácia CKAN Data API a CKAN DataStore.
Prístup k dátovému API prostredníctvom nasledujúcich CKAN akcií API
Vytvoriť | https://seoflash.framer.website/blog/how-can-designers-prepare-for-the-future/datastore_create |
---|---|
Aktualizovať / Vložiť | https://seoflash.framer.website/blog/how-can-designers-prepare-for-the-future/datastore_upsert |
Dopyt | https://seoflash.framer.website/blog/how-can-designers-prepare-for-the-future/datastore_search |
Dopyt (prostredníctvom SQL) | https://seoflash.framer.website/blog/how-can-designers-prepare-for-the-future/datastore_search_sql |
Jednoduchá ajaxová (JSONP) požiadavka pre dátovú API využívajúcu jQuery
var data = { resource_id: '0f41b0b0-6972-4d7e-87b4-be6edbf4d549', // the resource id limit: 5, // get 5 results q: 'jones' // query for 'jones' }; $.ajax({ url: 'https://seoflash.framer.website/blog/how-can-designers-prepare-for-the-future/datastore_search', data: data, dataType: 'jsonp', success: function(data) { alert('Total results found: ' + data.result.total) } });
import urllib url = 'https://seoflash.framer.website/blog/how-can-designers-prepare-for-the-future/datastore_search?resource_id=0f41b0b0-6972-4d7e-87b4-be6edbf4d549&limit=5&q=title:jones' fileobj = urllib.urlopen(url) print fileobj.read()