Skip to content

Instantly share code, notes, and snippets.

@phenomnomnominal
Last active June 20, 2019 23:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phenomnomnominal/f2b0ff5867b3a33c90d19488ab841f1c to your computer and use it in GitHub Desktop.
Save phenomnomnominal/f2b0ff5867b3a33c90d19488ab841f1c to your computer and use it in GitHub Desktop.
const request = require('request');
const HOST = 'https://www.migrationsverket.se/ansokanbokning/wicket/';
const API = 'page?6-1.IBehaviorListener.1-form-kalender-kalender&start=2019-08-19&end=2019-08-26&_=1561069474473';
request(`${HOST}${API}`, function (err, _, body) {
console.log(body);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment