<?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: PowerBI Custom Connector - Windows Authentication in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/595602#M18126</link>
    <description>Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/28904"&gt;@v-jiascu-msft&lt;/a&gt;, Thank You very much for your response, I will wait for your response.</description>
    <pubDate>Sat, 05 Jan 2019 11:37:58 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-01-05T11:37:58Z</dc:date>
    <item>
      <title>PowerBI Custom Connector - Windows Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/591938#M18029</link>
      <description>&lt;P&gt;Dear Forum members/gurus,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings, I have a query related to Windows credential/Username.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anyway before sending request to the service I can retrieve Windows username and send it as a header or how the below works if I wanted to use Windows user. I wanted to send Windows user name to the my service where I can get a windows user and do further processing:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below I have used for Windows authentication:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample.DataConnector = [&lt;BR /&gt;Authentication = [&lt;BR /&gt;Windows = []&lt;BR /&gt;],&lt;BR /&gt;Label = Extension.LoadString("DataSourceLabel")&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then I have a feed method as below, tried to use Extension.CurrentCredential but getting a null error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Sample&lt;/SPAN&gt;.DataConnector.Feed = (url as text) =&amp;gt;&lt;BR /&gt;let&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Credential = Extension.CurrentCredential(),&lt;BR /&gt;split= Text.Split(Credential[Username],"#"),&lt;BR /&gt;source = Web.Contents(url, [ManualCredentials = true, Query = [&lt;BR /&gt;user_key = split]),&lt;BR /&gt;json = Json.Document(source)&lt;BR /&gt;in&lt;BR /&gt;json;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would be really grateful if anyone can help me to resolve - In simple I wanted to send windows username from Power bi custom connector and retrieve it within my service (REST)&lt;/P&gt;</description>
      <pubDate>Mon, 31 Dec 2018 11:00:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/591938#M18029</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-12-31T11:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Custom Connector - Windows Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/594151#M18090</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have consulted the Product Team. I will update the result here.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Dale&lt;/P&gt;</description>
      <pubDate>Thu, 03 Jan 2019 02:50:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/594151#M18090</guid>
      <dc:creator>v-jiascu-msft</dc:creator>
      <dc:date>2019-01-03T02:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Custom Connector - Windows Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/595602#M18126</link>
      <description>Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/28904"&gt;@v-jiascu-msft&lt;/a&gt;, Thank You very much for your response, I will wait for your response.</description>
      <pubDate>Sat, 05 Jan 2019 11:37:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/595602#M18126</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-01-05T11:37:58Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Custom Connector - Windows Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/599697#M18208</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have gotten the&amp;nbsp;response&amp;nbsp;from the Product Team.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Username is only presented with the Alternative Windows Authentication, which asks us to enter Windows username and password. You can activate it like below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;[Authentication = [Windows = [SupportsAlternateCredentials = true]]]&lt;/PRE&gt;
&lt;P&gt;Can this be helpful?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Dale&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 01:30:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Custom-Connector-Windows-Authentication/m-p/599697#M18208</guid>
      <dc:creator>v-jiascu-msft</dc:creator>
      <dc:date>2019-01-14T01:30:43Z</dc:date>
    </item>
  </channel>
</rss>

