This module provides a JavaScript library for interacting with the BIG IoT marketplace.
Simply install this module with NPM:
$ npm install bigiot-js --save
Prerequisites:
A number of examples are available:
We recomment using Webpack to include bigiot also in browser applications. But you may also use the prebuilt .js file, either:
https://flowhub.github.io/bigiot-js/bigiot.js
https://flowhub.github.io/bigiot-js/$VERSION/bigiot.js
Once you've completed the above steps, you can use this library. Instantiate a consumer with:
const bigiot = require('bigiot-js');
const consumer = new bigiot.consumer(consumerId, consumerSecret);
Then you need to authenticate your consumer with the marketplace:
consumer.authenticate()
.then(() => {
// Code to run after successful authentication
});
As of July 2018, the Marketplace API does not allow Cross-Origin-Request-Sharing. To work around this, a CORS proxy like cors-anywhere must be used.
const bigiot = require('bigiot-js');
const marketplace = undefined;
const corsproxy = 'https://mycors.example.org';
const consumer = new bigiot.consumer(consumerId, consumerSecret, marketplace, corsproxy);
You can look up offerings in the marketplace. But for more dynamic applications, it is also possible to discover them based on various criteria.
For example, to discover all parking site offerings, you can do the following:
const query = new bigiot.offering('Parking sites', 'urn:big-iot:ParkingSiteCategory');
// If you don't care about specifics on price and location, you can remove those
delete query.license;
delete query.price;
delete query.extent;
// Then get list of matching offerings
consumer.discover(query)
.then((matchingOfferings) => {
// Loop through the offerings can subscribe
});
When you've found a data offering from the marketplace, you need to make a subscription in order to access it.
consumer.subscribe('Offering ID here')
.then((subscription) => {
// Now you're subscribed. You can use the subscription details to make calls to the offering
consumer.access(subscription, inputData);
});
The input data above is a JSON structure fulfilling whatever input parameters the offering requires.
Note: many Java BIG IoT providers utilize a self-signed invalid SSL certificate.
These will be rejected by default. To allow requests to these providers from Node.js, pass a custom https.Agent to Consumer
:
const https = require('https');
const options = { httpAgent: new https.Agent({rejectUnauthorized: false}) };
const consumer = bigiot.consumer(consumerId, consumerSecret, null, options);
This is not possible in web browsers. To workaround, use a CORS proxy.
Prerequisites:
See a simple provider example, and the NoFlo integration in the bigiot-bridge repository.
Once you've completed the above steps, you can use this library. Instantiate a provider with:
const bigiot = require('bigiot-js');
const provider = new bigiot.provider(providerId, providerSecret);
Then you need to authenticate your provider with the marketplace:
provider.authenticate()
.then(() => {
// Code to run after successful authentication
});
// Instantiate an offering of the desired type
const offering = new bigiot.offering(offeringName, offeringRdfType);
// Define the HTTP endpoint consumers should call on your service
offering.endpoints = {
uri: 'http://example.net/some/path',
};
// Define the geographical extent of your offering
offering.extent = {
city: 'Berlin',
};
// Define the input parameters your offering accepts, if any
offering.inputData = [
{
name: 'latitude',
rdfUri: 'http://schema.org/latitude',
},
{
name: 'longitude',
rdfUri: 'http://schema.org/longitude',
},
]
// Define the data structure your offering returns when called
offering.outputData = [
{
name: "temperature",
rdfUri: 'http://schema.org/airTemperatureValue',
}
];
Once you're happy with the offering description, you can register it with the marketplace with:
provider.register(offering)
.then(() => {
// Code to run after successful registration
});
The offering registration is timeboxed and will expire by default in ten minutes, so for persistent offerings you should call the activate method in a timer loop and update the expiration time regularly.
Subscribers that make requests to your offering will present a HTTP Bearer token signed with your provider secret. You can validate it with:
provider.validateToken(token)
.catch((err) => {
// Give a 403 response because token is invalid or expired
})
.then(() => {
// Token is valid
});
These steps are needed to support direct access from web browsers when using the BIG IoT Java lib in your Provider (not bigiot-js
).
((EmbeddedSpark)provider.getEmbeddedServer()).enableCorsAll();
Browsers must have valid SSL and support CORS to be used in browser.
The bigiotjs-check-offerings
tool can test offerings to verify this.
To check offerings of a specific category
bigiotjs-check-offerings --category urn:big-iot:ParkingSiteCategory
To run for all known categories and output an HTML report
bigiotjs-check-offerings --html report.html