Giter Site home page Giter Site logo

homeaway's Introduction

About

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.

Getting Started

  1. Get access to the HomeAway API. They ask you a few questions about what you want to build, but I was given access immediately after filling out the form.
  2. Create a client.
  3. Install this module with npm install homeaway

Using node-homeaway

Here'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.

Supported Methods:

Methods are being added on an as-needed basis. Feel free to submit a PR if you want to implement a missing one yourself.

Getting a Listing

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.

Getting a User Token

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.

  1. Redirect the user to a page on HomeAway's website on which they grant your app access to their account.
  2. Handle a request which includes an authorization code to your client redirect URL.
  3. Use that authorization code to get the final access token. This token will be used to make all subsequent requests for that user.

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:

  1. 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.

  2. 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.

homeaway's People

Contributors

alexarena avatar dmojdehi avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.