A GitHub link has been provided to get obtain the sample application. This application demonstrates dashboard rendering with a list of dashboards available in your Bold BI server. It is then followed by steps to create a new embedding application in ASP.NET MVC
on your own.
NOTE: The best way to get started would be to read the Getting Started section of the documentation first. The
Getting Started
guide provides you with enough information that you need to know before working on the sample.
Please get the ASP.NET MVC sample from GitHub.
Please make sure that you have enabled embed authentication on the embed settings
settings page. If it is not currently enabled, please refer to the provided image or detailed instructions to enable it.
To download the embedConfig.json
file, please click on the following link for reference. Additionally, you can refer to the image below for visual guidance.
Please copy the downloaded embedConfig.json
file and paste it into the designated location within the application. Make sure you have placed it in the application, as shown in the image below.
ServerUrl | Dashboard Server BI URL (ex: http://localhost:5000/bi, https://demo.boldbi.com/bi) |
SiteIdentifier | For Bold BI Enterprise edition, it should be like site/site1. For Bold BI Cloud, it should be an empty string. |
UserEmail | UserEmail of the Admin in your Bold BI, which would be used to get the dashboards list. |
EmbedSecret | Get your EmbedSecret key from the Embed tab by enabling the Enable embed authentication in the Administration page |
Environment | Your Bold BI application environment. (If it is cloud analytics server, use `BoldBI.Environment.Cloud`; if it is your own server, use `BoldBI.Environment.Enterprise`) |
DashboardId | Item id of the dashboard to be embedded in your application. |
ExpirationTime | Token expiration time. (In the EmbedConfig.json file, the default token expiration time is 10000 seconds) |
Please run your ASP.NET MVC
sample in Visual Studio.
NOTE: If you encounter an error with
bin\roslyn\csc.ex
, it means that you need to perform a cleanclean build
andrebuild
.
By default, we display the dashboard embedding without the dashboard listing sidebar. To access the dashboard list, you need to navigate to the dashboardlisting
URL (e.g., https://localhost:44382/home/dashboardlisting
).
The dashboard can be edited in the design mode and create a new dashboard with the following changes in the renderDashboard()
method.
dashboardId | Provide the dashboard id of the dashboard you want to embed in view or edit mode. |
mode | In which mode you want to render dashboard. It can either be 'BoldBI.Mode.View' or 'BoldBI.Mode.Design' mode. |
authorizationServer | Url of the 'authorizationServerAPI' action in the application. |
function renderDashboard(dashboardId) {
var dashboard = BoldBI.create({
serverUrl: rootUrl + "/" + siteIdentifier,
dashboardId: dashboardId,//Provide item id to render it in design mode,to create dashboard remove this property
embedContainerId: "dashboard",
environment: environment, // If Cloud, you should use BoldBI.Environment.Cloud
mode: BoldBI.Mode.Design,
authorizationServer: {
url: authorizationServerUrl
}
});
dashboard.loadDesigner();
};
In HomeController.cs
, the Index()
method reads values from embedConfig.json
and stores them in the server-side model. These values are then assigned to JavaScript variables in Index.cshtml
for front-end use. The authorizationServer
URL is configured to call the AuthorizationServer
action for authentication.
public ActionResult Index()
{
string basePath = AppDomain.CurrentDomain.BaseDirectory;
string jsonString = System.IO.File.ReadAllText(Path.Combine(basePath, "embedConfig.json"));
GlobalAppSettings.EmbedDetails = JsonConvert.DeserializeObject<EmbedDetails>(jsonString);
return View();
}
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link rel="stylesheet" href="~/Content/Site.css" />
<script type="text/javascript" src="https://cdn.boldbi.com/embedded-sdk/latest/boldbi-embed.js"></script>
<script type="text/javascript" src="~/Scripts/Embed/Index.js"></script>
<script type="text/javascript">
var rootUrl = "@GlobalAppSettings.EmbedDetails.ServerUrl";
var dashboardId = "@GlobalAppSettings.EmbedDetails.DashboardId";
var siteIdentifier = "@GlobalAppSettings.EmbedDetails.SiteIdentifier";
var environment = "@GlobalAppSettings.EmbedDetails.Environment";
var embedType = "@GlobalAppSettings.EmbedDetails.EmbedType";
var authorizationServerUrl = "@Url.Action("AuthorizationServer", "Home")";
</script>
</head>
<body onload="renderDashboard(dashboardId)">
<div id="viewer-section" style="width: 100%";>
<div id="dashboard"></div>
</div>
</body>
</html>
The renderDashboard(dashboardId) function runs when the page loads. It initializes the BoldBI.create() function, setting key parameters like the server URL, dashboard ID, environment, embedContainerId, and the authorizationServer URL is assigned for authentication..
function renderDashboard(dashboardId) {
this.dashboard = BoldBI.create({
serverUrl: rootUrl + "/" + siteIdentifier,
dashboardId: dashboardId,
embedContainerId: "dashboard",
environment: environment,
authorizationServer: {
url: authorizationServerUrl
}
});
this.dashboard.loadDashboard();
};
In the authorization, we generated the SignatureUrl
using the provided EmbedSecret key
and validated the embed details in Bold BI. Only then, the dashboard will be rendered in the viewer section of Index.cshtml
.
[HttpPost]
[Route("AuthorizationServer")]
public ActionResult AuthorizationServer(string embedQuerString, string dashboardServerApiUrl)
{
embedQuerString += "&embed_user_email=" + GlobalAppSettings.EmbedDetails.UserEmail;
var embedDetailsUrl = "/embed/authorize?" + embedQuerString.ToLower() + "&embed_signature=" + GetSignatureUrl(embedQuerString.ToLower());
using (var client = new HttpClient())
{
client.BaseAddress = new Uri(dashboardServerApiUrl);
client.DefaultRequestHeaders.Accept.Clear();
var result = client.GetAsync(dashboardServerApiUrl + embedDetailsUrl).Result;
string resultContent = result.Content.ReadAsStringAsync().Result;
return Json(resultContent);
}
}
The DashboardListing
action in HomeController.cs
retrieves the necessary properties from embedConfig
, deserializes them into GlobalAppSettings.EmbedDetails
, and passes them to the view.
[HttpGet]
[Route("DashboardListing")]
public ActionResult DashboardListing()
{
string basePath = AppDomain.CurrentDomain.BaseDirectory;
string jsonString = System.IO.File.ReadAllText(Path.Combine(basePath, "embedConfig.json"));
GlobalAppSettings.EmbedDetails = JsonConvert.DeserializeObject<EmbedDetails>(jsonString);
return View();
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="~/Content/Site.css" />
<script type="text/javascript" src="https://cdn.boldbi.com/embedded-sdk/latest/boldbi-embed.js"></script>
<script type="text/javascript" src="~/Scripts/Embed/Index.js"></script>
<script type="text/javascript">
var rootUrl = "@GlobalAppSettings.EmbedDetails.ServerUrl";
var dashboardId = "@GlobalAppSettings.EmbedDetails.DashboardId";
var siteIdentifier = "@GlobalAppSettings.EmbedDetails.SiteIdentifier";
var environment = "@GlobalAppSettings.EmbedDetails.Environment";
var embedType = "@GlobalAppSettings.EmbedDetails.EmbedType";
var authorizationServerUrl = "@Url.Action("AuthorizationServer", "Home")";
var getDashboardsUrl = "@Url.Action("GetDashboards", "Home")";
</script>
</head>
<body onload="Init()">
<div id="container">
<div class="header-section">
<div id="grid-title">All Dashboard</div>
</div>
<div id="panel">
</div>
</div>
<div id="viewer-section">
<div id="dashboard"></div>
</div>
</body>
</html>
When the page loads, the Init() function triggers an AJAX request to the getDashboardsUrl endpoint, where the GetDashboards() method in HomeController.cs
retrieves an authentication token using GetToken() and fetches the list of available dashboards from the Bold BI server.
function Init() {
var http = new XMLHttpRequest();
http.open("GET", getDashboardsUrl, true);
http.responseType = 'json';
http.setRequestHeader("Content-type", "application/json");
http.onreadystatechange = function () {
if (http.readyState == 4 && http.status == 200) {
ListDashboards.call(this, typeof http.response == "object" ? http.response : JSON.parse(http.response));
}
else if (http.readyState == 4 && http.status == 404) {
console.log("Server not found");
}
else if (http.readyState == 4) {
console.log(http.statusText);
}
};
http.send();
};
[HttpGet]
[Route("dashboards/get")]
public string GetDashboards()
{
var token = GetToken();
using (var client = new HttpClient())
{
client.BaseAddress = new Uri(GlobalAppSettings.EmbedDetails.ServerUrl);
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Add("Authorization", token.TokenType + " " + token.AccessToken);
var result = client.GetAsync(GlobalAppSettings.EmbedDetails.ServerUrl + "/api/" + GlobalAppSettings.EmbedDetails.SiteIdentifier + "/v2.0/items?ItemType=2").Result;
string resultContent = result.Content.ReadAsStringAsync().Result;
return resultContent;
}
}
public Token GetToken()
{
using (var client = new HttpClient())
{
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls | System.Net.SecurityProtocolType.Tls11 | System.Net.SecurityProtocolType.Tls12;
client.BaseAddress = new Uri(GlobalAppSettings.EmbedDetails.ServerUrl);
client.DefaultRequestHeaders.Accept.Clear();
var content = new FormUrlEncodedContent(new[]
{
new KeyValuePair<string, string>("Username", GlobalAppSettings.EmbedDetails.UserEmail),
new KeyValuePair<string, string>("grant_type", "embed_secret"),
new KeyValuePair<string, string>("embed_secret", GlobalAppSettings.EmbedDetails.EmbedSecret)
});
var result = client.PostAsync(GlobalAppSettings.EmbedDetails.ServerUrl + "/api/" + GlobalAppSettings.EmbedDetails.SiteIdentifier + "/token", content).Result;
string resultContent = result.Content.ReadAsStringAsync().Result;
var response = JsonConvert.DeserializeObject<Token>(resultContent);
return response;
}
}
Once the dashboards are retrieved, the ListDashboards()
function is called with the fetched data. This function automatically loads the first dashboard from the list by calling renderDashboard(data[0].Id)
.
function ListDashboards(data) {
if (typeof (data) != "undefined" && data != null) {
renderDashboard(data[0].Id);
data.forEach(function (element) {
var divTag = document.createElement("div");
divTag.innerHTML = element.Name;
divTag.className = "dashboard-item";
divTag.setAttribute("onclick", "renderDashboard('" + element.Id + "')");
divTag.setAttribute("name", element.Name);
divTag.setAttribute("itemid", element.Id);
divTag.setAttribute("version", element.Version);
divTag.setAttribute("ispublic", element.IsPublic);
document.getElementById("panel").appendChild(divTag);
});
}
}
function renderDashboard(dashboardId) {
this.dashboard = BoldBI.create({
serverUrl: rootUrl + "/" + siteIdentifier,
dashboardId: dashboardId,
embedContainerId: "dashboard",
environment: environment,
authorizationServer: {
url: authorizationServerUrl
}
});
this.dashboard.loadDashboard();
};
To begin, open Visual Studio and select Create
new project.
Next, choose ASP.NET Web Application (.NET Framework) and click Next.
Please feel free to change the project name as desired, and then click on the Create button.
Please select MVC and Web API, and then click OK.
Please make sure that you have enabled embed authentication on the embed embed settings
page. If it is not currently enabled, please refer to the following image or detailed instructions to enable it.
To download the embedConfig.json
file, please click on the following link for reference. Additionally, you can refer to the accompanying image for visual guidance.
Please copy the downloaded embedConfig.json
file and paste it into the designated location within the application. Please make sure you have placed it in the application, as shown in the image below.
Please create another model class named DataClass.cs
to define the following properties. These properties will be used to retrieve the dashboard details from the server. Please make sure to include the using Newtonsoft.Json;
namespace in the DataClass.cs
model file.
public class Token
{
[JsonProperty("access_token")]
public string AccessToken { get; set; }
[JsonProperty("token_type")]
public string TokenType { get; set; }
[JsonProperty("expires_in")]
public string ExpiresIn { get; set; }
[JsonProperty("email")]
public string Email { get; set; }
[JsonProperty(".issued")]
public string Issued { get; set; }
[JsonProperty(".expires")]
public string Expires { get; set; }
}
public class EmbedDetails
{
public string Environment { get; set; }
public string SiteIdentifier { get; set; }
public string ServerUrl { get; set; }
public string EmbedSecret { get; set; }
public string UserEmail { get; set; }
public string EmbedType { get; set; }
public string DashboardId { get; set; }
}
Please create another model class called GlobalAppSettings.cs
. This class will define the following properties that will maintain the embedConfig.json
file object within the GlobalAppSettings
. Make sure to include the static static BoldBI.Embed.Sample.Models.DataClass
namespace in the GlobalAppSettings.cs
model file.
public class GlobalAppSettings
{
public static EmbedDetails EmbedDetails { get; set; }
}
The following script is necessary to display the dashboard. Set Layout = null
at the top and replace the code below in the <head>
tag of your page. Ensure that the Models folder is included in the namespaces.
Single Dashboard Embedding
<head>
<link rel="stylesheet" href="~/Content/Site.css" />
<script type="text/javascript" src="https://cdn.boldbi.com/embedded-sdk/v11.2.7/boldbi-embed.js"></script>
<script type="text/javascript" src="~/Scripts/Embed/Index.js"></script>
<script type="text/javascript">
var rootUrl = "@GlobalAppSettings.EmbedDetails.ServerUrl";
var dashboardId = "@GlobalAppSettings.EmbedDetails.DashboardId";
var siteIdentifier = "@GlobalAppSettings.EmbedDetails.SiteIdentifier";
var environment = "@GlobalAppSettings.EmbedDetails.Environment";
var embedType = "@GlobalAppSettings.EmbedDetails.EmbedType";
var authorizationServerUrl = "@Url.Action("AuthorizationServer", "Home")";
</script>
</head>
In the <body>
section, include the <div id="viewer-section">
with a <div id="dashboard">
inside it. This container can be used to display the dashboard.
<body onload="renderDashboard(dashboardId)">
<div id="viewer-section">
<div id="dashboard"></div>
</div>
</body>
Dashboard Listing
To embed a dashboard in dashboard listing page, create a new Razor view named DashboardListing.cshtml
and set Layout = null
at the top of the file. Replace the <head>
section of your page with the following code, ensuring that the Models folder is included in the namespaces.
<head>
<script type="text/javascript" src="https://cdn.boldbi.com/embedded-sdk/latest/boldbi-embed.js"></script>
<link rel="stylesheet" href="~/Content/Site.css" />
<script type="text/javascript" src="~/Scripts/Embed/Index.js"></script>
<script type="text/javascript">
var rootUrl = "@GlobalAppSettings.EmbedDetails.ServerUrl";
var dashboardId = "@GlobalAppSettings.EmbedDetails.DashboardId";
var siteIdentifier = "@GlobalAppSettings.EmbedDetails.SiteIdentifier";
var environment = "@GlobalAppSettings.EmbedDetails.Environment";
var embedType = "@GlobalAppSettings.EmbedDetails.EmbedType";
var authorizationServerUrl = "@Url.Action("AuthorizationServer", "Home")";
var getDashboardsUrl = "@Url.Action("GetDashboards", "Home")";
</script>
</head>
In the <body>
section, include a container to display the list of dashboards and a <div id="viewer-section">
with a nested <div id="dashboard">
. This section will be used to display the selected dashboard.
<body onload="Init()">
<div id="container">
<div class="header-section">
<div id="grid-title">All Dashboards</div>
</div>
<div id="panel">
</div>
</div>
<div id="viewer-section">
<div id="dashboard"></div>
</div>
</body>
To style the Dashboard Listing page correctly, add the following CSS rules to your Site.css
file.
ul {
list-style-type: none;
padding-left: 0;
}
.tab {
padding-top: 2px;
padding-bottom: 18px;
cursor: pointer
}
.active {
background-color: burlywood;
}
#container {
width: 13%;
float: left;
height: 100%;
float: left;
background: #f4f4f4;
height: 100%;
box-shadow: 2px 0 4px 0 rgba(0, 0, 0, .12);
overflow: auto;
overflow-x: hidden;
}
#grid-title {
font-size: 17px;
border-bottom: 1px solid #333;
padding: 15px;
}
#panel {
width: 100%;
float: left;
background: #f4f4f4;
overflow: auto;
}
#dashboard {
width: 100%;
float: left;
height: 100%;
display: block;
}
.dashboard-item {
padding: 10px;
border-bottom: 1px solid #ccc;
cursor: pointer;
}
#viewer-section {
width: 87%;
height: 100%;
float: left;
}
#viewer-header {
padding: 10px;
display: block;
float: left;
width: 100%;
}
#create-dashboard {
float: right;
margin-right: 20px;
background: #0565ff;
border: 0;
border-radius: 4px;
color: #fff;
cursor: pointer;
display: inline-block;
font-size: 12px;
font-weight: 600;
height: 28px;
line-height: 28px;
min-width: 90px;
outline: none;
text-align: center;
border: 1px solid #0450cc;
}
Please create a new folder called Controllers
. Then, create a new file called HomeController.cs
within the Controllers
folder. To obtain specific dashboard details in the Controllers\HomeController.cs
, an API method called AuthorizationServer()
needs to be defined. This API will utilize the GetSignatureUrl()
method to generate the algorithm. The parameters embedQueryString
, userEmail
, and the value from the GetSignatureUrl()
method should be added as query parameters in the URL to fetch the desired dashboard details. Please ensure that the Newtonsoft.Json
and System.Security.Cryptography
namespaces are included.
public ActionResult Index()
{
string basePath = AppDomain.CurrentDomain.BaseDirectory;
string jsonString = System.IO.File.ReadAllText(Path.Combine(basePath, "embedConfig.json"));
GlobalAppSettings.EmbedDetails = JsonConvert.DeserializeObject<EmbedDetails>(jsonString);
// Pass specific properties to the view using ViewBag
ViewBag.DashboardId = GlobalAppSettings.EmbedDetails.DashboardId;
ViewBag.ServerUrl = GlobalAppSettings.EmbedDetails.ServerUrl;
ViewBag.EmbedType = GlobalAppSettings.EmbedDetails.EmbedType;
ViewBag.Environment = GlobalAppSettings.EmbedDetails.Environment;
ViewBag.SiteIdentifier = GlobalAppSettings.EmbedDetails.SiteIdentifier;
return View();
}
[System.Web.Http.HttpPost]
[System.Web.Http.Route("AuthorizationServer")]
public ActionResult AuthorizationServer(string embedQuerString, string dashboardServerApiUrl)
{
embedQuerString += "&embed_user_email=" + GlobalAppSettings.EmbedDetails.UserEmail;
var embedDetailsUrl = "/embed/authorize?" + embedQuerString.ToLower() + "&embed_signature=" + GetSignatureUrl(embedQuerString.ToLower());
using (var client = new HttpClient())
{
client.BaseAddress = new Uri(dashboardServerApiUrl);
client.DefaultRequestHeaders.Accept.Clear();
var result = client.GetAsync(dashboardServerApiUrl + embedDetailsUrl).Result;
string resultContent = result.Content.ReadAsStringAsync().Result;
return Json(resultContent);
}
}
public string GetSignatureUrl(string message)
{
var encoding = new System.Text.UTF8Encoding();
var keyBytes = encoding.GetBytes(GlobalAppSettings.EmbedDetails.EmbedSecret);
var messageBytes = encoding.GetBytes(message);
using (var hmacsha1 = new HMACSHA256(keyBytes))
{
var hashMessage = hmacsha1.ComputeHash(messageBytes);
return Convert.ToBase64String(hashMessage);
}
}
Additionally, include the GetDashboards()
and GetToken()
functions to retrieve the list of dashboards and display the dashboard listing page.
[HttpGet]
[Route("DashboardListing")]
public ActionResult DashboardListing()
{
return View();
}
[HttpGet]
[Route("dashboards/get")]
public string GetDashboards()
{
var token = GetToken();
using (var client = new HttpClient())
{
client.BaseAddress = new Uri(GlobalAppSettings.EmbedDetails.ServerUrl);
client.DefaultRequestHeaders.Accept.Clear();
client.DefaultRequestHeaders.Add("Authorization", token.TokenType + " " + token.AccessToken);
var result = client.GetAsync(GlobalAppSettings.EmbedDetails.ServerUrl + "/api/" + GlobalAppSettings.EmbedDetails.SiteIdentifier + "/v2.0/items?ItemType=2").Result;
string resultContent = result.Content.ReadAsStringAsync().Result;
return resultContent;
}
}
public Token GetToken()
{
using (var client = new HttpClient())
{
System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls | System.Net.SecurityProtocolType.Tls11 | System.Net.SecurityProtocolType.Tls12;
client.BaseAddress = new Uri(GlobalAppSettings.EmbedDetails.ServerUrl);
client.DefaultRequestHeaders.Accept.Clear();
var content = new FormUrlEncodedContent(new[]
{
new KeyValuePair<string, string>("Username", GlobalAppSettings.EmbedDetails.UserEmail),
new KeyValuePair<string, string>("grant_type", "embed_secret"),
new KeyValuePair<string, string>("embed_secret", GlobalAppSettings.EmbedDetails.EmbedSecret)
});
var result = client.PostAsync(GlobalAppSettings.EmbedDetails.ServerUrl + "/api/" + GlobalAppSettings.EmbedDetails.SiteIdentifier + "/token", content).Result;
string resultContent = result.Content.ReadAsStringAsync().Result;
var response = JsonConvert.DeserializeObject<Token>(resultContent);
return response;
}
}
Open the Scripts
folder. Inside the Scripts
folder, create a new folder called Embed
. Within the Embed
folder, create a new file named Index.js
. Define the renderDashboard()
method, which creates an instance and calls the loadDashboard()
method to render the dashboard. The renderDashboard()
method is responsible for rendering the dashboard using the Embed SDK
file.
function renderDashboard(dashboardId) {
var dashboard = BoldBI.create({
serverUrl: rootUrl + "/" + siteIdentifier, // Dashboard Server BI URL (e.g., http://localhost:5000/bi/site/site1, http://demo.boldbi.com/bi/site/site1)
dashboardId: dashboardId, // Provide the dashboard ID of the dashboard you want to embed here.
embedContainerId: "dashboard", // DOM ID where the dashboard will be rendered; here it is "dashboard".
environment: environment, // If Cloud, you should use BoldBI.Environment.Cloud
mode: BoldBI.Mode.View, // Rendering mode of the dashboard; it can be either Design or View.
expirationTime: 100000, // Set the duration for which the token will be valid.
authorizationServer: {
url: authorizationServerUrl // URL from which the specific dashboard details are obtained from the server.
}
});
dashboard.loadDashboard();
}
For dashboard listing, additionally include the following scripts in the Index.js
file:
function Init() {
var http = new XMLHttpRequest();
http.open("GET", getDashboardsUrl, true);
http.responseType = 'json';
http.setRequestHeader("Content-type", "application/json");
http.onreadystatechange = function () {
if (http.readyState == 4 && http.status == 200) {
ListDashboards.call(this, typeof http.response == "object" ? http.response : JSON.parse(http.response));
} else if (http.readyState == 4 && http.status == 404) {
console.log("Server not found");
} else if (http.readyState == 4) {
console.log(http.statusText);
}
};
http.send();
}
function ListDashboards(data) {
if (typeof data !== "undefined" && data !== null) {
renderDashboard(data[0].Id);
data.forEach(function (element) {
var divTag = document.createElement("div");
divTag.innerHTML = element.Name;
divTag.className = "dashboard-item";
divTag.setAttribute("onclick", "renderDashboard('" + element.Id + "')");
divTag.setAttribute("name", element.Name);
divTag.setAttribute("itemid", element.Id);
divTag.setAttribute("version", element.Version);
divTag.setAttribute("ispublic", element.IsPublic);
document.getElementById("panel").appendChild(divTag);
});
}
}
Please run your ASP.NET MVC sample in Visual Studio.