<?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: Data Connector Authentication in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/419870#M12552</link>
    <description>&lt;P&gt;Thanks Michael, but those examples uses OAuth, which is a&amp;nbsp;rather more complicated; we want to start with simple Username / Password; are you aware of any examples that start there?&lt;/P&gt;</description>
    <pubDate>Thu, 17 May 2018 14:52:33 GMT</pubDate>
    <dc:creator>john_dawson</dc:creator>
    <dc:date>2018-05-17T14:52:33Z</dc:date>
    <item>
      <title>Data Connector Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/418533#M12466</link>
      <description>&lt;P&gt;We are currently taking a number of existing Power BI reports and converting to use the Data Connector&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Currently, we have worked through a number of examples and implemented non-authenticated connectors OK&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So far, no success with usaing authenticated data sources; there is some documentation alright e.g. &lt;A href="https://github.com/Microsoft/DataConnectors/blob/master/docs/m-extensions.md" target="_blank"&gt;https://github.com/Microsoft/DataConnectors/blob/master/docs/m-extensions.md&lt;/A&gt;, which is helpful, but is short on examples&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are using the Visual Studio extension to develop the connector; when testing, it asks for the credentials - fine. But having done so, it promptly forgets them and asks for the credentials again ... and again&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Must be something simple? But this seems to be a fairly new area, so information is bit lacking. Help please!&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 10:22:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/418533#M12466</guid>
      <dc:creator>john_dawson</dc:creator>
      <dc:date>2018-05-16T10:22:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data Connector Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/419828#M12548</link>
      <description>&lt;P&gt;Have you checked the following sample?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/Microsoft/DataConnectors/blob/master/samples/MyGraph" target="_blank"&gt;MyGraph&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/Microsoft/DataConnectors/blob/master/samples/Github" target="_blank"&gt;Github&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;samples&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 14:31:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/419828#M12548</guid>
      <dc:creator>v-micsh-msft</dc:creator>
      <dc:date>2018-05-17T14:31:35Z</dc:date>
    </item>
    <item>
      <title>Re: Data Connector Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/419870#M12552</link>
      <description>&lt;P&gt;Thanks Michael, but those examples uses OAuth, which is a&amp;nbsp;rather more complicated; we want to start with simple Username / Password; are you aware of any examples that start there?&lt;/P&gt;</description>
      <pubDate>Thu, 17 May 2018 14:52:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/419870#M12552</guid>
      <dc:creator>john_dawson</dc:creator>
      <dc:date>2018-05-17T14:52:33Z</dc:date>
    </item>
    <item>
      <title>Re: Data Connector Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/461884#M14220</link>
      <description>&lt;P&gt;Follow up, in case this helps others: got the OAUTH Data Connector (DC) per the GitHub link above to work OK, with only a little "fiddling"; the core part is the Authentication element, where the functions that actually implement OAUTH are defined (StartLogin etc.)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DataConnectorName = [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TestConnection = (dataSourcePath) =&amp;gt; { "DataConnectorName.Feed" },&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Authentication = [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OAuth = [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; StartLogin=StartLogin,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FinishLogin=FinishLogin,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Refresh=Refresh,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Logout=Logout&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Label = "My Graph Connector"&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We also have another DC which uses anonymous authentication, which is pretty simple, in that respect, per below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Data Source Kind description&lt;BR /&gt;DataConnectorName= [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; TestConnection = (dataSourcePath) =&amp;gt; {"DataConnectorName.Feed"},&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Authentication = [Implicit = []],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Label = "DataConnectorName"&lt;BR /&gt;];&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 11:08:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Data-Connector-Authentication/m-p/461884#M14220</guid>
      <dc:creator>john_dawson</dc:creator>
      <dc:date>2018-07-13T11:08:20Z</dc:date>
    </item>
  </channel>
</rss>

