How to use the iotagent-node-lib.getConfiguration function in iotagent-node-lib

To help you get started, we’ve selected a few iotagent-node-lib examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Atos-Research-and-Innovation / IoTagent-LoRaWAN / lib / iotagent-lora.js View on Github external
function loadConfigurationFromAppserver (appServer, callback) {
    if (!appServer.getIotaConfiguration()) {
        return iotAgentLib.getConfiguration(appServer.getAppId(), '', callback);
    } else {
        var conf = appServer.getIotaConfiguration();
        if (!conf.resource) {
            return callback(null, conf);
        } else {
            return iotAgentLib.getConfiguration(appServer.getAppId(), '', callback);
        }
    }
}