Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. "http://api.trove.nla.gov.au/work/undefined?key=6k6oagt6ott4ohno&reclevel=full"
  2.  
  3. var request = require('request'),
  4. cheerio = require('cheerio');
  5. request('http://api.trove.nla.gov.au/result?key=6k6oagt6ott4ohno&zone=book&l-advformat=Thesis&sortby=dateDesc&q=+date%3A[2000+TO+2014]&l-availability=y&l-australian=y&n=0&s=0', function(error, response, html) {
  6. if (!error && response.statusCode == 200) {
  7. var $ = cheerio.load(html, {
  8. xmlMode: true
  9. });
  10.  
  11. var myid = ($('work').attr('id'))
  12. var myurl = "http://api.trove.nla.gov.au/work/" +(myid)+ "?key=6k6oagt6ott4ohno&reclevel=full"
  13. console.log(myurl)
  14. }
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement