npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bms-mca-oauth-sdk

v3.0.5

Published

The bms-mca-oauth-sdk module can be used to get the authorization header from the Mobile Client Access Service

Downloads

16

Readme

#Using the bms-mca-oauth-sdk npm module obtain an authorization header

The bms-mca-oauth-sdk enables you to obtain an authorization header from the Mobile Client Access Service. You can add this header to outgoing requests in order to pass the token validation with module bms-mca-token-validation-strategy

Installation

npm install bms-mca-oauth-sdk

Gettig the Authorization Header from a service using a secret

By using getAuthorizationHeader API, the SDK will use the clientid and secret from VCAP environemnt variable and generate an access token on behalf of this mobile backend application.

Sample usage

var express = require('express');
var oauthSDK = require('bms-mca-oauth-sdk');

var app = express();

app.get('/hello',
	function(req, res) {
		var options = {cacheSize:100};
		oauthSDK.getAuthorizationHeaderBySecret(options).then(function(authHeader) {
			res.send(200, authHeader);
		}, function(err) {
			console.log(err);
		});
});

Authorization Header propogation

By using getAuthorizationHeaderFromIncomingRequest API, the SDK can retrieve the authorization header from an incoming request. You can attach this authorization header to any outgoing request to access other resources protected by Mobile Client Access Service.

Sample usage

var express = require('express');
var oauthSDK = require('bms-mca-oauth-sdk');

var app = express();

app.get('/hello',
	function(req, res) {
		
		// obtain authorization header from incoming request
		var authorization = 
			oauthSDK.getAuthorizationHeaderFromIncomingRequest(req);
		
		res.send(200, authorization);
	});

Gettig the Authorization Header using a certificate

The SDK to get the IMF access token from IMF AZ server, which is used for Bluemix application or service

To make the SDK work successfully, the request must contain the authorization header, and the authorization header must contain one or two bearer tokens. If the authorization header only contains one bearer token, it will get the IMF access token when meeting when meeting the below requirement: a), There must have the folder 'imf_certificate' contains the files 'private-key.pem' and 'public-certificate.pem'. b), There must have the system variable 'imfServiceUrl'.

If the authorization header contains two bearer tokens, the first is the access token and the second is the id token. In this scenario, The SDK will forward the request with the authorization header to the IMF AZ server directly.

Service Flow

var express = require('express'),
    imf = require('bms-mca-oauth-sdk');

var app = express();

app.get('/v2/apps/:appid/hello',
	function(req, res) {
		var appId = req.params.apid;
		imf.getAuthorizationHeaderByCertificate({appId:appId,cacheSize:100}).then(function(token) {
			res.send(200, token);
		}, function(err) {
			console.log(err);
		});
	});

Admin UI Flow

var express = require('express'),
    imf = require('bms-mca-oauth-sdk');

var app = express();

app.get('/v2/apps/:appid/hello',
	function(req, res) {
		var appId = req.params.apid;
		var credential = req && req.headers && req.headers['Authorization'];
		imf.getAuthorizationHeaderByCertificate({appId:appId,credential:credential,cacheSize:100}).then(function(token) {
			res.send(200, token);
		}, function(err) {
			console.log(err);
		});
	});

Propogation

var express = require('express'),
    imf = require('bms-mca-oauth-sdk');

var app = express();

app.get('/v2/apps/:appid/hello',
	function(req, res) {
		var appId = req.params.apid;
		var credential = req && req.headers && req.headers['Authorization'];
		var authorization = imf.getAuthorizationHeaderFromIncomingRequest(req);
		res.send(200, authorization);
	});

License

This package contains sample code provided in source code form. The samples are licensed under the under the Apache License, Version 2.0 (the "License"). You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 and may also view the license in the license.txt file within this package. Also see the notices.txt file within this package for additional notices.