Forum Discussion
"A web API Key can only be specified when a web API key name is provided" error when using Web API
- 3 years ago
Hi jasonyeung87 ,
Please review the content in the following links, hope they can help you resolve the problem.
1. Get data from web error: A web API key can only be specified when a web API key name is provided
Solution:
- Open Power BI Desktop and on the Home tab, select Get data and choose the Web option.
- Paste your metric query's URL into the Power BI dialog asking for the Web page URL.
- In the Access web content dialog, select Basic, enter your app'sAPI keyas the Username, and pressConnect
Solution: Add ApiKeyName = "ApiKey" as part of the 3 parameter of using OData.Feed
let Source = OData.Feed("https://localhost/odata", null, [Implementation="2.0", ApiKeyName = "ApiKey"]), Table_table = Source{[Name="Table",Signature="table"]}[Data] in Table_table3. There is a way to get around the Power BI limitation of not being able to perform anonymous authentication for Web data sources that require API keys by using Azure function proxies.To learn more details, see the following documentation: Power BI: Using anonymous authentication on Web data sources with a API key in URL – Kloud Blog
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi jasonyeung87 ,
Please review the content in the following links, hope they can help you resolve the problem.
1. Get data from web error: A web API key can only be specified when a web API key name is provided
Solution:
- Open Power BI Desktop and on the Home tab, select Get data and choose the Web option.
- Paste your metric query's URL into the Power BI dialog asking for the Web page URL.
- In the Access web content dialog, select Basic, enter your app'sAPI keyas the Username, and pressConnect
Solution: Add ApiKeyName = "ApiKey" as part of the 3 parameter of using OData.Feed
let
Source = OData.Feed("https://localhost/odata", null, [Implementation="2.0", ApiKeyName = "ApiKey"]),
Table_table = Source{[Name="Table",Signature="table"]}[Data]
in
Table_table
3. There is a way to get around the Power BI limitation of not being able to perform anonymous authentication for Web data sources that require API keys by using Azure function proxies.To learn more details, see the following documentation: Power BI: Using anonymous authentication on Web data sources with a API key in URL – Kloud Blog
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.