Looking to extract real estate listings specifically from the 3taps API.
offers listings across various categories, but my focus is on extracting only those in the Real Estate Category.
My development work will be in Microsoft .Net, leaving me with just one option - using JS.
Could someone provide guidance on how to implement this API?
I have attempted the following code snippet:
<html>
<head>
<title>Jasmine Test Runner</title>
<link rel="stylesheet" type="text/css" href="lib/jasmine-1.0.2/jasmine.css">
<script type="text/javascript" src="lib/jasmine-1.0.2/jasmine.js"></script>
<script type="text/javascript" src="lib/jasmine-1.0.2/jasmine-html.js"></script>
<!-- include source files here... -->
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="json.js"></script>
<script type="text/javascript" src="3taps.js"></script>
<!-- include spec files here... -->
<script type="text/javascript" src="3tapsSpec.js"></script>
</head>
<body>
<script type="text/javascript">
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
jasmine.getEnv().execute();
var items = new threeTapsClient("crcq5ztyvj6duvuzk4pbatqn").search.search({ text: 'Real Estate', category: 'Want Housing' }, function (results) { console.log(results) });
</script>
</body>
</html>