top of page
AutorenbildBrunner_BI

How to avoid having to use a personal gateway for web data sources (html page or table) in Power BI

When you import publicly available data into your report you will most likely use the web connector in Power Query.

This might lead to issues later on when trying to refresh your dataset.


Here is why:



When you select the Web connector in Power BI (or Power Query) to load publicly accessible data (with anonymous authentication)







This function will be automatically created:

= Web.BrowserContents("MYURL")


This will lead to issues when you publish your report to the Power BI Service and try to refresh it.



As you can see, the gateway connection option is on and data source credentials is greyed out in the Power BI service.


This means you can only refresh your data after installing a personal gateway on your machine and we do not want that.





So what can be done?


Well it is pretty easy, manually change the function to:


= Web.Contents("MYURL")


Now, when you publish your report you will see the following:


Power BI tells us this is a public data source and it does not need a personal gateway.








Now we can also set our data source credentials with the correct authentication method and privacy level.



Conclusion


Replace the default function created by the web connector Web.BrowserContents with Web.Contents as outlined above.


Microsoft's documentation states that:

Web.BrowserContents "Returns the HTML for the specified url, as viewed by a web browser."

whereas

Web.Contents "Returns the contents downloaded from url as binary"


If you have had trouble with this feel free to comment and share your thoughts.

2.878 Ansichten8 Kommentare

Aktuelle Beiträge

Alle ansehen

8 Comments


Radka Jánská
Radka Jánská
Apr 25, 2021

Hallo, thanks for interesting tip. I have the same problem with odata. Do you have any trick what to do in this case?

Like
Brunner_BI
Brunner_BI
Aug 08, 2021
Replying to

Sorry for the late reply but your odata feed is requiring a gateway? Is the data on the web?

Like

Mark Lobbezoo
Mark Lobbezoo
Mar 23, 2021

Thanks this works perfectly, a tip for when you try this. When you open the settings of your dataset, have a bit of patience it can take a few moments before you can see the data source credentials. also if you don't see the source credentials you can click on the gateway then it will show you the source credentials

Like

Hi, It is an internal website. That houses statistical data. I am able to pull via PowerBi desktop using anonymous credentials.

Like
Replying to

Yes, that’s exactly what I mean. I think my management and I were under the impression that it didn’t matter.


I’ll pull the data into a spreadsheet placed on SharePoint and pull it from there.

Thank you so much for replying.

Like

Brunner_BI
Brunner_BI
Mar 17, 2021

Hi Gijzette, what is your data source?

Like

When I choose Get Data > Web PowerBi automatically selects Web.Contents. According to the PowerBi Service I need a gateway. Which as you said is not a viable option.

Like
bottom of page