mirror of
https://github.com/curlconverter/curlconverter.git
synced 2022-05-22 02:35:29 +03:00
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
var request = require('request');
|
|
|
|
var headers = {
|
|
'Origin': 'http://www.realtor.ca',
|
|
'Accept-Encoding': 'gzip, deflate',
|
|
'Accept-Language': 'en-US,en;q=0.8',
|
|
'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.101 Safari/537.36',
|
|
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8',
|
|
'Accept': '*/*',
|
|
'Referer': 'http://www.realtor.ca/Residential/Map.aspx',
|
|
'Connection': 'keep-alive'
|
|
};
|
|
|
|
var dataString = 'CultureId=1&ApplicationId=1&RecordsPerPage=200&MaximumResults=200&PropertyTypeId=300&TransactionTypeId=2&StoreyRange=0-0&BuildingTypeId=1&BedRange=0-0&BathRange=0-0&LongitudeMin=-79.3676805496215&LongitudeMax=-79.27300930023185&LatitudeMin=43.660358732823845&LatitudeMax=43.692390574029936&SortOrder=A&SortBy=1&viewState=m&Longitude=-79.4107246398925&Latitude=43.6552047278685&ZoomLevel=13&CurrentPage=1';
|
|
|
|
var options = {
|
|
url: 'http://www.realtor.ca/api/Listing.svc/PropertySearch_Post',
|
|
method: 'POST',
|
|
headers: headers,
|
|
body: dataString
|
|
};
|
|
|
|
function callback(error, response, body) {
|
|
if (!error && response.statusCode == 200) {
|
|
console.log(body);
|
|
}
|
|
}
|
|
|
|
request(options, callback);
|