Hi,
I've been attempting to make this work with no luck. My code looks like:
<EJ.ReportViewer
reportServiceUrl='https://MyReportServerUrl/ReportService/api/Viewer'
serviceAuthorizationToken={token}
reportPath="/path to my report"
>
</EJ.ReportViewer>
When I use postman to get the token for my report server admin user using the url "MyReportServerUrl/api/token" and then pass that in to the report
viewer as my bearer token it works. However if I use postman to get a token for the report server app registration in azure and then pass that
in as my bearer token I get an error from the PostReportAction network call saying
"Ensure the valid report path is specified in the ReportPath property or make sure that the specified report exists and is accessible in the provided location."
So I'm assuming it failed to authenticate? Am I correct in thinking I don't need an intermediate service with this approach?
Any advice on what I could be doing wrong or links to a sample?