Skip to content

An OpenID Connect implementation for account login using Biocryptology.com on Meteor.

Notifications You must be signed in to change notification settings

mozfet/meteor-biocryptology

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 

Repository files navigation

meteor-biocryptology

Login with Biocryptology on Meteor.

Installation

Use the command line terminal in your project directory.

$ meteor add accounts-base
$ meteor add mozfet:accounts-biocryptology

Configuration

Create settings-developement.json and settings-production.json in app project folder. Use sandbox clientId and secret in settings-developement.json. Use live clientId and secret in settings-developement.json. Do not upload unencrypted settings-production.json to source code repositories for security reasons.

In settings-developement.json add:

{
  "biocryptology": {
    "wellknownConfig": "http://is.sb.biocryptology.net/.well-known/openid-configuration",
    "loginStyle":  "popup",
    "clientId": "your-dev-client-id",
    "secret": "your-dev-secret",
    "scopes": ["email", "openid"],
    "claims": ["given_name", "family_name", "prefered_username", "locale"],
    "callbackUrl": "http://160.226.132.146:3200/_oauth/biocryptology"
  }
}

Note that on a local host environment the callbackUrl is needed to defined your external IP and an open inbound port where your DEVC server is running. You will also need to use a VPN in order to run locally so that your external IP resolves for the callback from the authentication server.

In settings-production.json add:

{
  "biocryptology": {
    "wellknownConfig": "http://is.biocryptology.com/.well-known/openid-configuration",
    "loginStyle":  "popup",
    "clientId": "your-prod-client-id",
    "secret": "your-prod-secret",
    "scopes": ["email", "openid"],
    "claims": ["given_name", "family_name", "prefered_username", "locale"]
  }
}

Note that in PROD you should not specify the callback URL, it will be detected by automagically by Meteor.

Usage

Login using client side code:

Meteor.loginWithBiocryptology()

Logout using client side code:

Meteor.logout()

About

An OpenID Connect implementation for account login using Biocryptology.com on Meteor.

Resources

Stars

Watchers

Forks

Packages

No packages published