oauth2-client-demo/infos.js
Yann Esposito (Yogsototh) 6cd9b523e8
new intel scopes
2018-04-17 21:02:45 +02:00

17 lines
510 B
JavaScript

var oauthServerUrl="http://localhost:9001/iroh/oauth2/authorize";
var response_type="code";
var client_id="localtest";
var client_password = "localpass";
var redirect_uri="http://localhost:9999/login.html";
var scopes=["casebook"
,"collect"
,"global-intel"
,"private-intel"
,"enrich"
,"inspect"
,"integration"
,"iroh-auth"
,"response"
,"ui-settings"];
var scope=scopes.join(" ");
var state="whatever";