Hello,
I am using the Telerik Angular Report Viewer and Reporting REST service to configure Telerik Reporting. However, I am unable to obtain the authorization token needed to set the connection string. I have implemented the Telerik custom report source resolver in my application. After reading a few articles, I learned that the authorizationToken
can be set in the HTML file. However, I am unsure how to apply this token in my report controller or within my custom source resolver.
Telerik angular viewer :
</div>
Report controller -
[Route("api/BME/[Controller]")]
[ApiController]
public class ReportsController : ReportsControllerBase
{
public int ClientSessionTimeout { get; set; }
public ReportsController(IReportServiceConfiguration reportServiceConfiguration, IConnectionFactory connectionFactory)
: base(reportServiceConfiguration)
{
}
Thank You,
Pragati