Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Hi,
I want to create a template app to put in the power bi marketplace which contains data from my web.When I connect to a data source in Power BI Desktop, I choose to retrieve data from the web. I will fill in a URL address (http://123.57.5.120:9334/api/open/powerbi/queryData?appKey=4d9c0ee8&startDate=2024-03-19&endDate=202...
This is my example data. I have defined three parameters, and I hope that when users install my template application, entering these parameters can help me query the data tables of different users.
But I don't know how to connect these parameters with my URL through the Power BI API, so I didn't do any programming.
Now, I have installed the testing template application and entered the three parameters mentioned above.
When I click Next, it prompts me Data source not supported.Connecting to data sources that require a local gateway is not currently supported. Connecting to data sources that require a local gateway is not currently supported.Please try again later or contact support. If you choose to contact support, please provide these details.
Solved! Go to Solution.
It seems like you're trying to create a Power BI template app that connects to a web data source using parameters, but you're encountering an error message stating that connecting to data sources requiring a local gateway is not supported.
Here's what you can do to address this issue:
Data Source Connectivity: The error message indicates that connecting to data sources requiring a local gateway is not currently supported. This means that the web data source you're trying to connect to may require a local gateway for connectivity, and template apps do not support this type of connection.
Alternative Data Source: Consider using a different data source that does not require a local gateway for connectivity. Power BI supports a wide range of data sources including databases, cloud services, APIs, and more. You may be able to find an alternative data source that meets your requirements and does not require a local gateway.
Parameterized URLs: If you're unable to use a different data source, you may need to modify your approach to use parameterized URLs within Power BI. This involves creating a parameterized query in Power BI Desktop and passing parameters to the URL dynamically. However, this approach may not be feasible if the web data source specifically requires a local gateway for connectivity.
Contact Support: If you believe that the error message is incorrect or if you require further assistance, you can contact Microsoft Power BI support for help. Provide the details mentioned in the error message, such as the activity ID and request ID, to help them investigate the issue further.
Consider Workarounds: Depending on your specific requirements, you may need to explore alternative solutions or workarounds to achieve your goals. This could involve using custom connectors, data preprocessing, or other techniques to connect to and retrieve data from your web data source.
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
If possible, move the data to a cloud-based storage service like Azure Blob Storage or Azure SQL Database. Once the data is in the cloud, Power BI can access it directly without the need for a gateway.
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@v-jialongy-msft How to move the data to a cloud-based storage service like Azure Blob Storage or Azure SQL Database?Do I need to buy an Azure server first?
It seems like you're trying to create a Power BI template app that connects to a web data source using parameters, but you're encountering an error message stating that connecting to data sources requiring a local gateway is not supported.
Here's what you can do to address this issue:
Data Source Connectivity: The error message indicates that connecting to data sources requiring a local gateway is not currently supported. This means that the web data source you're trying to connect to may require a local gateway for connectivity, and template apps do not support this type of connection.
Alternative Data Source: Consider using a different data source that does not require a local gateway for connectivity. Power BI supports a wide range of data sources including databases, cloud services, APIs, and more. You may be able to find an alternative data source that meets your requirements and does not require a local gateway.
Parameterized URLs: If you're unable to use a different data source, you may need to modify your approach to use parameterized URLs within Power BI. This involves creating a parameterized query in Power BI Desktop and passing parameters to the URL dynamically. However, this approach may not be feasible if the web data source specifically requires a local gateway for connectivity.
Contact Support: If you believe that the error message is incorrect or if you require further assistance, you can contact Microsoft Power BI support for help. Provide the details mentioned in the error message, such as the activity ID and request ID, to help them investigate the issue further.
Consider Workarounds: Depending on your specific requirements, you may need to explore alternative solutions or workarounds to achieve your goals. This could involve using custom connectors, data preprocessing, or other techniques to connect to and retrieve data from your web data source.
Did I answer your question? Mark my post as a solution! Appreciate your Kudos !!
@johnbasha33 This involves creating a parameterized query in Power BI Desktop and passing parameters to the URL dynamically.I think this method can solve my problem. But I don't know exactly how to do it. Do you have a more detailed operation document?