
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
node-homeaway is an unofficial HomeAway API client for Node. It is in no way affiliated with either HomeAway, Inc. or Expedia, Inc.
It is very much a work-in-progress and API methods are being added on an as-needed basis.
npm install homeawaynode-homeawayHere's a simple example, where the client and secret are provided upon creating your client on the HomeAway website.
const ha = new HomeAway({
client:'your-client-id-here',
secret: 'your-secret-here'
})
async function myFunc(){
try{
// connect() and all other methods on ha could throw.
// You should catch these errors somewhere within your app.
await ha.connect()
const listing = await ha.getListing('6592159',['LOCATION','RATES'])
console.log(listing)
}
catch(e){
console.log(e)
}
}
myFunc()
As you can see, node-homeaway makes use of some more cutting-edge JS features, like async/await. As such, it requires Node 8 or above.
For more examples, check out the examples photo in this repo.
Methods are being added on an as-needed basis. Feel free to submit a PR if you want to implement a missing one yourself.
Method signature: async getListing(id,attributes)
id is a string corresponding to the id of the listing.attributes is an array of additional details to return with the listing, for example PHOTOS or AVAILABILITY.It corresponds to the GET /public/listing API method.
User tokens are required for methods that access user account information. If you don't need to access user account information, its much easier to not bother with this at all. Getting these tokens is a three step process.
Step 1 should be handled by your app exclusively. Per the HomeAway API Docs, the URL you need to redirect users to is: https://ws.homeaway.com/oauth/authorize?client_id=<YOUR CLIENT ID>
Steps 2 and 3 are handled by node-homeaway. Depending on your needs, you can use one of two methods:
If you're only using HomeAway as a login provider, you can get a thumbs-up/thumbs-down on whether a user is logged in (as well as their email) by calling the node-homeaway authenticate method. All other requests to the HomeAway API can be made with a call to an existing node-homeaway client.
If you need to make calls to user-specific methods (eg. GET /public/me), you'll need to include the user access token with every method call (as the first argument).
The user access token should be stored with your client-side application (eg. in LocalStorage) and sent with every request to your Node backend.
You can generate a user access token by calling the node-homeaway getUserToken method. This should be called when the user is sent to the redirect URL you specified in your HomeAway client configuration.
FAQs
An unofficial client for the HomeAway API
The npm package homeaway receives a total of 3 weekly downloads. As such, homeaway popularity was classified as not popular.
We found that homeaway demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.