how to connect my web api wtih Power BI Reports?

冷暖自知 提交于 2019-12-09 01:27:47

问题


I have a web API to deliver required data sources for my reports. How can I connect my web API with Power BI. I gone through Rest API. But I am missing the complete flow.


回答1:


Go to Home > Edit Queries > Advance Editor. Here is some Power Query code to query issue a GET request to an API endpoint.

let
    Source = Json.Document(Web.Contents("http://mywebapi"))
in
    Source

More information here: https://msdn.microsoft.com/en-us/library/mt260892.aspx

and here: https://blog.crossjoin.co.uk/2014/03/26/working-with-web-services-in-power-query/



来源:https://stackoverflow.com/questions/36685463/how-to-connect-my-web-api-wtih-power-bi-reports

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!