how to connect my web api wtih Power BI Reports?

后端 未结 1 580
忘掉有多难
忘掉有多难 2021-01-03 12:07

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条回答
  • 2021-01-03 12:35

    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/

    0 讨论(0)
提交回复
热议问题