Huddle.com OAuth2 login service for use with Meteor Accounts.
Before usage, be sure to get access to the Huddle API. You'll need to contact their API team with some basic information in order to obtain access to an API key. You can get started on that by visiting the Huddle API docs.
Be sure to provide exact redirect URIs in the following format:
http://yoursiteurl.xyz/_oauth/huddle?close
- accounts-base
- accounts-oauth
meteor add typ:accounts-huddle
- Read the 'Integrating with Login Services' section of Getting Started with Auth and make sure you set up your config correctly.
- Call
Meteor.loginWithHuddle();
- You also have access to a
Huddle
API object, to control the lower layers of the client and server flows. Don't use it unless you know what you're doing!
The redirect URI must be set to '${yoursiteurl}/_oauth/huddle?close'
- Shamelessly based on the
accounts-box
package which was shamelessly based on the coreaccounts-google
andgoogle
packages. Thanks guys :)