Fixing JWT token issue for realtime analytics

revert-dabc3590
Rasika Perera 8 years ago
parent 85a382e16a
commit 6ee958bbe7

@ -32,10 +32,10 @@ function onRequest(context) {
var tokenUtil = require("/app/modules/oauth/token-handler-utils.js")["utils"];
var resp = tokenUtil.decode(encodedClientKeys).split(":");
var deviceParam = "{\"scope\":\"stats\",\"deviceIdentifiers\":[{\"id\":\"" + device.deviceIdentifier
+ " \", \"type\":\"" + device.type + "\"}]}";
+ "\", \"type\":\"" + device.type + "\"}]}";
var encodedScope = tokenUtil.encode(deviceParam);
var tokenPair = jwtClient.getAccessToken(resp[0], resp[1], context.user.username,
"{\"device\": \"" + encodedScope + "\"}");
var tokenPair = jwtClient.getAccessToken(resp[0], resp[1], context.user.username,"default",
{"device": encodedScope});
var token = "";
if (tokenPair) {
token = tokenPair.accessToken;

Loading…
Cancel
Save