<?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 Application Authentication in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/263191#M8085</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/34771"&gt;@elserafi&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;We are trying to utilize REST API of Power BI which allows to integrate a Power BI report into an application.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We have created an application within our&amp;nbsp;Microsoft Azure Active Directory&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;and given permission for Microsoft Power BI Reporting.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We are facing below issues while integrating PowerBI report from WebAPI.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Acquiring the token from the AZURE Active Directory.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How do we achieve the “Access Token” without user interaction? ( i.e. not showing Microsoft Authentication Popup).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We tried getting access token using below code, however the token which we received gives&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;forbidden&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;error.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;TokenCache&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;TC =&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;TokenCache&lt;FONT color="#000000"&gt;();&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ClientCredential&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;CC =&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;ClientCredential&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;(clientID,SecretID);&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;Microsoft.IdentityModel.Clients.ActiveDirectory.&lt;/FONT&gt;AuthenticationContext&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;authenticationContext1=&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;Microsoft.IdentityModel.Clients.ActiveDirectory.&lt;/FONT&gt;AuthenticationContext&lt;FONT color="#000000"&gt;(authorityUri, TC);&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;AuthenticationResult&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;result3 = authenticationContext.AcquireTokenAsync(resourceUri, CC).Result;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/34771"&gt;@elserafi&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;What is the scenario in your case that required non-user interaction? For &lt;A href="https://github.com/Microsoft/PowerBI-Developer-Samples/blob/9e53cef82b6834ddcfd12f2bc38b51e672bca6d7/App%20Owns%20Data/PowerBIEmbedded_AppOwnsData/Controllers/HomeController.cs" target="_self"&gt;App Owns data&lt;/A&gt;, you can reference below snippet.&lt;/P&gt;
&lt;PRE&gt;            // Create a user password cradentials.
            var credential = new UserPasswordCredential(Username, Password);

            // Authenticate using created credentials
            var authenticationContext = new AuthenticationContext(AuthorityUrl);
            var authenticationResult = await authenticationContext.AcquireTokenAsync(ResourceUrl, ClientId, credential);&lt;/PRE&gt;
&lt;P&gt;Or you can call the REST API directly.&lt;/P&gt;
&lt;PRE&gt;POST /common/oauth2/token HTTP/1.1
Host: login.windows.net
Content-Type: application/x-www-form-urlencoded
Cache-Control: no-cache 

client_secret={cilent_secrect}&amp;amp;client_id={client_id}&amp;amp;grant_type=password&amp;amp;resource=https%3A%2F%2Fanalysis.windows.net%2Fpowerbi%2Fapi&amp;amp;username={pbi username}&amp;amp;password={pbi password}&lt;/PRE&gt;</description>
    <pubDate>Mon, 02 Oct 2017 07:58:56 GMT</pubDate>
    <dc:creator>Eric_Zhang</dc:creator>
    <dc:date>2017-10-02T07:58:56Z</dc:date>
    <item>
      <title>PowerBI Application Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/261930#M8084</link>
      <description>&lt;P&gt;&lt;SPAN&gt;We are trying to utilize REST API of Power BI which allows to integrate a Power BI report into an application.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We have created an application within our&amp;nbsp;Microsoft Azure Active Directory&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;and given permission for Microsoft Power BI Reporting.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We are facing below issues while integrating PowerBI report from WebAPI.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Acquiring the token from the AZURE Active Directory.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How do we achieve the “Access Token” without user interaction? ( i.e. not showing Microsoft Authentication Popup).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;We tried getting access token using below code, however the token which we received gives&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;forbidden&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;TokenCache&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;TC =&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;TokenCache&lt;FONT color="#000000"&gt;();&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ClientCredential&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;CC =&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;ClientCredential&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;(clientID,SecretID);&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;Microsoft.IdentityModel.Clients.ActiveDirectory.&lt;/FONT&gt;AuthenticationContext&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;authenticationContext1=&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;Microsoft.IdentityModel.Clients.ActiveDirectory.&lt;/FONT&gt;AuthenticationContext&lt;FONT color="#000000"&gt;(authorityUri, TC);&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;AuthenticationResult&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;result3 = authenticationContext.AcquireTokenAsync(resourceUri, CC).Result;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Sep 2017 10:24:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/261930#M8084</guid>
      <dc:creator>elserafi</dc:creator>
      <dc:date>2017-09-30T10:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Application Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/263191#M8085</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/34771"&gt;@elserafi&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;We are trying to utilize REST API of Power BI which allows to integrate a Power BI report into an application.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We have created an application within our&amp;nbsp;Microsoft Azure Active Directory&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;and given permission for Microsoft Power BI Reporting.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We are facing below issues while integrating PowerBI report from WebAPI.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;Acquiring the token from the AZURE Active Directory.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;How do we achieve the “Access Token” without user interaction? ( i.e. not showing Microsoft Authentication Popup).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We tried getting access token using below code, however the token which we received gives&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;U&gt;forbidden&lt;/U&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;error.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;TokenCache&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;TC =&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;TokenCache&lt;FONT color="#000000"&gt;();&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;ClientCredential&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;CC =&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;ClientCredential&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;(clientID,SecretID);&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;Microsoft.IdentityModel.Clients.ActiveDirectory.&lt;/FONT&gt;AuthenticationContext&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;authenticationContext1=&lt;/FONT&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;new&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;FONT color="#000000"&gt;Microsoft.IdentityModel.Clients.ActiveDirectory.&lt;/FONT&gt;AuthenticationContext&lt;FONT color="#000000"&gt;(authorityUri, TC);&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;AuthenticationResult&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;FONT color="#000000"&gt;result3 = authenticationContext.AcquireTokenAsync(resourceUri, CC).Result;&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/34771"&gt;@elserafi&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;What is the scenario in your case that required non-user interaction? For &lt;A href="https://github.com/Microsoft/PowerBI-Developer-Samples/blob/9e53cef82b6834ddcfd12f2bc38b51e672bca6d7/App%20Owns%20Data/PowerBIEmbedded_AppOwnsData/Controllers/HomeController.cs" target="_self"&gt;App Owns data&lt;/A&gt;, you can reference below snippet.&lt;/P&gt;
&lt;PRE&gt;            // Create a user password cradentials.
            var credential = new UserPasswordCredential(Username, Password);

            // Authenticate using created credentials
            var authenticationContext = new AuthenticationContext(AuthorityUrl);
            var authenticationResult = await authenticationContext.AcquireTokenAsync(ResourceUrl, ClientId, credential);&lt;/PRE&gt;
&lt;P&gt;Or you can call the REST API directly.&lt;/P&gt;
&lt;PRE&gt;POST /common/oauth2/token HTTP/1.1
Host: login.windows.net
Content-Type: application/x-www-form-urlencoded
Cache-Control: no-cache 

client_secret={cilent_secrect}&amp;amp;client_id={client_id}&amp;amp;grant_type=password&amp;amp;resource=https%3A%2F%2Fanalysis.windows.net%2Fpowerbi%2Fapi&amp;amp;username={pbi username}&amp;amp;password={pbi password}&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Oct 2017 07:58:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/263191#M8085</guid>
      <dc:creator>Eric_Zhang</dc:creator>
      <dc:date>2017-10-02T07:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Application Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/556285#M17410</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can't we use below in the body to get the access code directly by posting to&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://login.microsoftonline.com/{Tenant" target="_blank"&gt;https://login.microsoftonline.com/{Tenant&lt;/A&gt; ID}/oauth2/token&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;grant_type=client_credentials&amp;amp;client_id={Client ID}&amp;amp;client_secret={Secret}&amp;amp;resource={Resourc URK}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why do we still need the passowrd and username given we already have the client secret? I used the same approachi fine for Dynamics 365 but is getting the error below for Power BI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"error": "invalid_resource",&lt;BR /&gt;"error_description": "AADSTS50001: The application named {Our Application URL} was not found in the tenant named {Tenent ID}&lt;/P&gt;</description>
      <pubDate>Tue, 30 Oct 2018 12:13:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/556285#M17410</guid>
      <dc:creator>Carshalton</dc:creator>
      <dc:date>2018-10-30T12:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: PowerBI Application Authentication</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/557557#M17467</link>
      <description>&lt;P&gt;It looks like you are acquiring an app-only token which is not currently supported in the Power BI Service API. Yes, you can successfully acquire an app-only token for the Power BI Service API from azure AD but the call will always fail owhen you try to use the app-only token.&amp;nbsp;Support for app-only tokens in the Power BI Service API is on the road map and should be released into preview in the coming months but currently&amp;nbsp;you must acquire access tokens with a user identity.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;While it is not ideal, the current way to acquire an access token without any user interaction is to use the UserPasswordCredential flow. Therefore, you must write the code to look like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;private static string aadAuthorizationEndpoint = "https://login.windows.net/common";&lt;BR /&gt;private static string resourceUriPowerBi = "https://analysis.windows.net/powerbi/api";&lt;BR /&gt;private static string urlPowerBiRestApiRoot = "https://api.powerbi.com/";&lt;BR /&gt;private static string clientId = ConfigurationManager.AppSettings["client-id"];&lt;BR /&gt;private static string userName = ConfigurationManager.AppSettings["aad-account-name"]; &lt;BR /&gt;private static string userPassword = ConfigurationManager.AppSettings["aad-account-password"];&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;private static string GetAccessToken() {

  // create new authentication context 
  AuthenticationContext authenticationContext = new AuthenticationContext(aadAuthorizationEndpoint);
  AuthenticationResult userAuthnResult = 
    authenticationContext.AcquireTokenAsync(resourceUriPowerBi,
                                            clientId,
                                            new UserPasswordCredential(userName, userPassword)).Result;
     

  // return access token to caller
  return userAuthnResult.AccessToken;
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Since you are using delegated permissions, you also must grant permissions to the application ahead of time because the call to acquire an access token in this non-interactive manner will fail if the current user has not consented to the applications. The most common way to deal with this is to click the &lt;STRONG&gt;Grant permissions&lt;/STRONG&gt; button for the Azure AD application in the Azure portal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Oct 2018 12:35:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/PowerBI-Application-Authentication/m-p/557557#M17467</guid>
      <dc:creator>TedPattison</dc:creator>
      <dc:date>2018-10-31T12:35:21Z</dc:date>
    </item>
  </channel>
</rss>

