Authentiq service for use with Meteor Accounts.
- Create an Authentiq Client ID at Authentiq Dashboard.
- Go to your application and configure the login service from server-side code:
ServiceConfiguration.configurations.remove({ service: 'authentiq' });
ServiceConfiguration.configurations.insert({
service: 'authentiq',
// baseUrl: '{YOUR_AUTHENTIQ_DOMAIN}', // for development purposes or on-premise installations
clientId: '{YOUR_AUTHENTIQ_CLIENT_ID}',
clientSecret: '{YOUR_AUTHENTIQ_CLIENT_SECRET}'
});
ServiceConfiguration.configurations is exported by the service-configuration package:
meteor add service-configuration
meteor add authentiqid:accounts-authentiq
- Use accounts-ui to handle login experience, or directly call:
Meteor.loginWithAuthentiq();
You can find useful info about the Meteor Accounts API from here.
- accounts-base
- accounts-oauth
Closely based on the accounts-google package.