<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to get data from 3rd party REST API in PowerBI? in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-data-from-3rd-party-REST-API-in-PowerBI/m-p/1863142#M29589</link>
    <description>&lt;P&gt;Ok, I think I know the answer: Power Query Data Conectors&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=srQ-DLqhoxM" target="_blank"&gt;https://www.youtube.com/watch?v=srQ-DLqhoxM&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Microsoft/DataConnectors" target="_blank"&gt;https://github.com/Microsoft/DataConnectors&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if I'm wrong please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 25 May 2021 17:17:10 GMT</pubDate>
    <dc:creator>gooduling</dc:creator>
    <dc:date>2021-05-25T17:17:10Z</dc:date>
    <item>
      <title>How to get data from 3rd party REST API in PowerBI?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-data-from-3rd-party-REST-API-in-PowerBI/m-p/1862657#M29579</link>
      <description>&lt;P&gt;Hi, I'm pretty new in Power BI, so I feel I have a mess in my head after all read Documents.&lt;/P&gt;&lt;P&gt;So what I need is a dashboard with Query fields and visualisation, where the user would be able to request data say from &lt;U&gt;&lt;STRONG&gt;example.com/api/items&lt;/STRONG&gt;&lt;/U&gt;&amp;nbsp;endpoint and then visualise it somehow.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Where should I write my connector to this 3rd party API ? In Power Query connectors? In Power Apps connectors? In Power BI stream datasets? 🤯&lt;/P&gt;&lt;P&gt;Please, help me to get it&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/6970" target="_blank" rel="noopener"&gt;cc @v-qiuyu-msft,&amp;nbsp;&lt;/A&gt;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/6971" target="_blank"&gt;@Eric_Zhang&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 16:20:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-get-data-from-3rd-party-REST-API-in-PowerBI/m-p/1862657#M29579</guid>
      <dc:creator>gooduling</dc:creator>
      <dc:date>2021-05-25T16:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from 3rd party REST API in PowerBI?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-data-from-3rd-party-REST-API-in-PowerBI/m-p/1863142#M29589</link>
      <description>&lt;P&gt;Ok, I think I know the answer: Power Query Data Conectors&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.youtube.com/watch?v=srQ-DLqhoxM" target="_blank"&gt;https://www.youtube.com/watch?v=srQ-DLqhoxM&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/Microsoft/DataConnectors" target="_blank"&gt;https://github.com/Microsoft/DataConnectors&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if I'm wrong please&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 May 2021 17:17:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-get-data-from-3rd-party-REST-API-in-PowerBI/m-p/1863142#M29589</guid>
      <dc:creator>gooduling</dc:creator>
      <dc:date>2021-05-25T17:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to get data from 3rd party REST API in PowerBI?</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-get-data-from-3rd-party-REST-API-in-PowerBI/m-p/1866373#M29622</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/303755"&gt;@gooduling&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;I think you can choose a web connector to handle the rest API.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;A href="https://community.powerbi.com/t5/Power-Query/Pull-data-from-a-REST-API-Authentication/td-p/246006" target="_blank"&gt;Solved: Pull data from a REST API Authentication - Microsoft Power BI Community&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Sample formula:&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    token = "",
    Result =
        Web.Contents(
            "https://xxxxx.xxx.com",
            [
                Headers = [
                    #"Content-Type" = "application/json",
                    Authorization = "Bearer " + token,
                    RelativePath = "/api/items"
                ]
            ]
        )
in
    Result&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 May 2021 05:35:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-get-data-from-3rd-party-REST-API-in-PowerBI/m-p/1866373#M29622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-27T05:35:42Z</dc:date>
    </item>
  </channel>
</rss>

