This is the master branch and contains unreleased and potentially breaking changes. If you are looking for the most recent stable release you want the v0-stable branch.
Wraps the HubSpot REST API for convenient access from ruby applications.
Documentation for the HubSpot REST API can be found here: https://developers.hubspot.com/docs/endpoints
gem install hubspot-api-ruby
Or with bundler,
gem "hubspot-api-ruby"
This library can be configured to use OAuth or an API key. To find the appropriate values for either approach, please visit the HubSpot API Authentication docs.
Below is a complete list of configuration options with the default values:
Hubspot.configure({
hapikey: <HAPIKEY>,
base_url: "https://api.hubapi.com",
portal_id: <PORTAL_ID>,
logger: Logger.new(nil),
access_token: <ACCESS_TOKEN>,
client_id: <CLIENT_ID>,
client_secret: <CLIENT_SECRET>,
redirect_uri: <REDIRECT_URI>,
read_timeout: nil, # or :timeout to set read_timeout and open_timeout
open_timeout: nil,
})
If you're new to using the HubSpot API, visit the HubSpot Developer Tools to learn about topics like "what's a portal id?" and creating a testing environment.
To set the HubSpot API key, aka hapikey
, run the following:
Hubspot.configure(hapikey: "YOUR_API_KEY")
If you have a HubSpot account, you can find your API key by logging in and visiting: https://app.hubspot.com/keys/get
Configure the library with the client ID and secret from your HubSpot App
Hubspot.configure(
client_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
client_secret: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
redirect_uri: "https://myapp.com/oauth")
To initiate an OAuth connection to your app, create a URL with the required scopes:
Hubspot::OAuth.authorize_url(["contacts", "content"])
After the user accepts the scopes and installs the integration with their HubSpot account, they will be redirected to the URI requested with the query parameter code
appended to the URL. code
can then be passed to HubSpot to generate an access token:
Hubspot::OAuth.create(params[:code])
To use the returned access_token
string for authentication, you'll need to update the configuration:
Hubspot.configure(
client_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
client_secret: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
redirect_uri: "https://myapp.com/oauth",
access_token: access_token)
Now all requests will use the provided access token when querying the API:
Hubspot::Contact.all
When you create a HubSpot OAuth token, it will have an expiration date given by the expires_in
field returned from the create API. If you with to continue using the token without needing to create another, you'll need to refresh the token:
Hubspot::OAuth.refresh(refresh_token)
At this time, OAuth tokens are configured globally rather than on a per-connection basis.
Classes have been created that map to Hubspot resource types and attempt to abstract away as much of the API specific details as possible. These classes generally follow the ActiveRecord pattern and general Ruby conventions. Anyone familiar with Ruby On Rails should find this API closely maps with familiar concepts.
https://github.com/lounna-sas/hubspot-api-ruby/wiki
Note: These are the currently defined classes the support the new resource API. This list will continue to grow as we update other classes. All existing classes will be updated prior to releasing v1.0.
- Contact -> Hubspot::Contact
- Company -> Hubspot::Company
- Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
- Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
- Fork the project.
- Start a feature/bugfix branch.
- Commit and push until you are happy with your contribution.
- Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
- Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
This project uses VCR to test interactions with the HubSpot API. VCR records HTTP requests and replays them during future tests.
To run the tests, run bundle exec rake
or bundle exec rspec
.
By default, the VCR recording mode is set to :none
, which allows recorded
requests to be re-played but raises for any new request. This prevents the test
suite from issuing unexpected HTTP requests.
To add a new test or update a VCR recording, run the test with the VCR_RECORD
environment variable:
VCR_RECORD=1 bundle exec rspec spec
This project and the code therein was not created by and is not supported by HubSpot, Inc or any of its affiliates.