Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
carlosmunoz
Employee
Employee

Authentication error with API v2

We have Power BI embedded reports in a .NET web application running on framework 4.5.2 and with Power BI API 2.4

Since yesterday those reports start to failed. The error is in the authentication process with the API, specifically on this line:

 

var authenticationResult = await authenticationContext.AcquireTokenAsync(ResourceUrl, ClientId, credential);

 

The error is not giving much information: "The underlying connection was closed: An unexpected error occurred on a send."

 

I tried to setup a project with the new API v.3.11.1 and the exact same code is running without any issues, the problem is that we will need to updagrade the whole project to framework 4.7.2 and that could take a considerable effort. Are you aware of any possible workaround to keep using v2 until we succesfully upgrade the project? 

1 REPLY 1
michaelx2
Employee
Employee

Hello @carlosmunoz ,

The issue is not caused by the new API v.3.11.1. In the next release of the framework the SecurityProtocolType enumerator got extended with the newer Tls protocols, so if your application can use th 4.5 version you can also use Tls11 and Tls12. So if you are on .net framework 4.5,change the SecurityProtocol .

 

 

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | 
                                       SecurityProtocolType.Tls11 |
                                       SecurityProtocolType.Tls12;

 

 

 

Best Regards

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Kudoed Authors