<?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: Dropbox API v2,  as API1 has been turned off in Power Query</title>
    <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267335#M13232</link>
    <description>&lt;P&gt;&lt;SPAN class="field"&gt;My info:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="field"&gt;Version&lt;/SPAN&gt;&lt;SPAN class="value"&gt;13.0.2597.188&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="field"&gt;Activity ID......&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="field"&gt;Time&lt;/SPAN&gt;&lt;SPAN class="value"&gt;Tue Oct 03 2017 15:54:20 GMT-0500 (Central Daylight Time)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="field"&gt;Your data is stored in&lt;/SPAN&gt;&lt;SPAN class="value"&gt;North Central US (Illinois)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="value"&gt;Error screenshots from service:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="value"&gt;&lt;img /&gt;&lt;img /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Oct 2017 21:00:36 GMT</pubDate>
    <dc:creator>granthworth</dc:creator>
    <dc:date>2017-10-03T21:00:36Z</dc:date>
    <item>
      <title>Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/261999#M13171</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been linking severla single files stored on dropbox using API! whiuch seems to have bene disabled last night. I think there are a lot of us in the same boat. &amp;nbsp;Can someone say what the equivalent code is for API2? &amp;nbsp;I tried change the path to&amp;nbsp;"&lt;A href="https://api.dropboxapi.com/2/files/auto/DataModel/SourceFiles/" target="_blank"&gt;https://api.dropboxapi.com/2/files/auto/DataModel/SourceFiles/&lt;/A&gt;" but that just errors. &amp;nbsp;My files are just sitting in a normal dropbox folder as can't us an App folder as can't be shared.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The code i was using was&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;let
    Source = Excel.Workbook(Web.Contents(DropboxSourcePath &amp;amp; "Inputs.xlsx" &amp;amp; Token), null, true),
    Centre_Table = Source{[Item="Centre",Kind="Table"]}[Data],
    #"Changed Type" = Table.TransformColumnTypes(Centre_Table,{{"Opening Date", type date}})
in
    #"Changed Type"&lt;/PRE&gt;
&lt;P&gt;Where &amp;nbsp;Dropboxsourcepath&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;let
    Source = "https://api-content.dropbox.com/1/files/auto/DataModel/SourceFiles/"
in
    Source&lt;/PRE&gt;
&lt;P&gt;and token&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;let
    Source = "?access_token=xxxxxxxxxxxxxxxxxxxxxxx"
in
    Source&lt;/PRE&gt;
&lt;P&gt;Grateful any advice as whole company reporting has collapsed&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 08:01:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/261999#M13171</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-11-27T08:01:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263422#M13186</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="27040" data-lia-user-login="masplin" class="lia-mention lia-mention-user"&gt;masplin&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;Do mask sensitive data before uploading scripts or screenshots.&lt;BR /&gt;&lt;BR /&gt;In your scenario, add a new blank query in Power BI Desktop, then paste the following code into the Advanced Editor of your query.&lt;/P&gt;
&lt;PRE&gt;let
    Source = Excel.Workbook(Web.Contents("https://content.dropboxapi.com/2/files/download", [Headers=[Authorization="Bearer &amp;lt;your access token&amp;gt;", #"Dropbox-API-Arg"="{""path"": ""/folder/path/filename.xlsx""}"]]), null, true)
in
    Source&lt;/PRE&gt;
&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;And I would commend you firstly test that if your API returns correct result in &lt;A href="https://dropbox.github.io/dropbox-api-v2-explorer/#files_download" target="_self"&gt;DropBox API Explorer&lt;/A&gt;.&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Lydia&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2017 11:17:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263422#M13186</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-28T11:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263848#M13190</link>
      <description>&lt;P&gt;Hi Lydia&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm obviously doing somethnig stupid.&amp;nbsp; the path to my file is&amp;nbsp;U:\Dropbox\DataModel\SourceFiles\Input.xlsx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In API explorer I got this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you tell me where i've gone wrong please?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 12:47:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263848#M13190</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-02T12:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263897#M13192</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="27040" data-lia-user-login="masplin" class="lia-mention lia-mention-user"&gt;masplin&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am still working on getting ours resolved also. I have not gotten around the issue completely yet but I was able to get at least a portion of Lydia's fix to work. See below for my info. Hope this helps.&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 13:35:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263897#M13192</guid>
      <dc:creator>granthworth</dc:creator>
      <dc:date>2017-10-02T13:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263902#M13193</link>
      <description>&lt;P&gt;let an "s" of the file name Duh!!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Brilliant&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 13:42:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263902#M13193</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-02T13:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263910#M13194</link>
      <description>&lt;P&gt;Ok so I got a repsonse from the API explorer uses this token and path, and can download the file however i then put this code in Power Query and get an error "unable to conenct to the remote server"? Any idea?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;let
    Source = Excel.Workbook(Web.Contents("https://content.dropboxapi.com/2/files/download", [Headers=[Authorization="Bearer lkPfa4vOd-AAAAAAAAAAXpFuGV2UKJk0D3WGQtPjNeIeZNwdopvcaSs_y3gguRYY", #"Dropbox-API-Arg"="{""path"": ""/DataModel/SourceFiles/Inputs.xlsx""}"]]), null, true)
in
    Source&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Oct 2017 13:49:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263910#M13194</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-02T13:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263958#M13198</link>
      <description>&lt;P&gt;That, I am not sure about.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to finally get our entire system up and running again. I updated ONLY the first line of code in each query under the Advanced Editor (only the code highlighted in blue below) as shown below. I left all other code the same and all queries now return with no error.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 14:07:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/263958#M13198</guid>
      <dc:creator>granthworth</dc:creator>
      <dc:date>2017-10-02T14:07:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/264336#M13199</link>
      <description>&lt;P&gt;Must have been an issue on my workcomputer as now works fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Last question as you can see in my old API1 code I used 2 subset queries one ot hold the Token and one to hold the path. Made it easier if either changed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried this code by doesn't seem to work unless you write both out in full&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;let
    Source = Excel.Workbook(Web.Contents("https://content.dropboxapi.com/2/files/download", [Headers=[Authorization="Bearer Token", #"Dropbox-API-Arg"="{""path"": ""DropboxSourcePath &amp;amp; Inputs.xlsx""}"]]), null, true)
in
    Source&lt;/PRE&gt;&lt;P&gt;Where DropboxSourcePath is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;let
    Source = "/DataModel/SourceFiles/"
in
    Source&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;and Token is&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;let
    Source = "lkPfa4vOd-AAAAAAAAAAKjmGh93HWPeYF-CY0LSTVss5JF53HOGK46xxk"
in
    Source&lt;/PRE&gt;&lt;P&gt;Assume i have an error in my syntax?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 15:43:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/264336#M13199</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-02T15:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/266856#M13216</link>
      <description>&lt;P&gt;If you're running with on premise gateway, how would you add this data source?&lt;/P&gt;&lt;P&gt;In V1 it's easy since it reads as a web url source. Anyone has luck trying this out?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 11:21:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/266856#M13216</guid>
      <dc:creator>Dindo</dc:creator>
      <dc:date>2017-10-03T11:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/266881#M13217</link>
      <description>&lt;P&gt;The code above works fine except you have to put the exact tokena nd path in the source line. &amp;nbsp;i managed to get it to read the table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm just hoping to be able to use some sub queries ot make it look neater and easier to manage&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 11:41:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/266881#M13217</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-03T11:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267260#M13222</link>
      <description>&lt;P&gt;your code (below) works only on PBI Desktop.&lt;/P&gt;&lt;P&gt;once it is published, it gets credential error on PBI Service.&lt;/P&gt;&lt;P&gt;is there any workaround to make it work and refresh on PBI Service?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let&lt;BR /&gt;Source = Excel.Workbook(Web.Contents("&lt;A href="https://content.dropboxapi.com/2/files/download" target="_blank"&gt;https://content.dropboxapi.com/2/files/download&lt;/A&gt;", [Headers=[Authorization="Bearer mytoken", #"Dropbox-API-Arg"="{""path"": ""/myfolder/myfile.xlsx""}"]]), null, true)&lt;BR /&gt;&lt;BR /&gt;in&lt;BR /&gt;#"Source"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 19:03:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267260#M13222</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-03T19:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267311#M13226</link>
      <description>&lt;P&gt;You are exactly right. I just went to the service to change our refresh schedule and noticed the error. I am looking into it now and will report back if I find a solution. Sorry about that!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 20:27:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267311#M13226</guid>
      <dc:creator>granthworth</dc:creator>
      <dc:date>2017-10-03T20:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267314#M13227</link>
      <description>&lt;P&gt;Hmm wierd as works fine for me on the srvice. I updated al lmy sources in desktop, republished and it just worked? did even touch the credentials.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 20:30:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267314#M13227</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-03T20:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267316#M13228</link>
      <description>&lt;P&gt;yeah, I know. I suspect there is an issue in my Brazilian server from PBI Service, as i have another dropbox project that I know works on US east (Virginia) but does not work here.&lt;/P&gt;&lt;P&gt;where is your PBI Service data being stored? USA? other place?&lt;/P&gt;&lt;P&gt;which version are you using?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am under:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="field"&gt;Version&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN class="value"&gt;13.0.2597.188&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="field"&gt;Activity ID&lt;/SPAN&gt;&lt;SPAN class="value"&gt;&amp;nbsp;nah&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="field"&gt;Time&lt;/SPAN&gt;&lt;SPAN class="value"&gt;Tue Oct 03 2017 17:34:25 GMT-0300 (Hora oficial do Brasil)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="field"&gt;Your data is stored in&lt;/SPAN&gt;&lt;SPAN class="value"&gt;Brazil South (Sao Paulo State)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 20:36:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267316#M13228</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-03T20:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267317#M13229</link>
      <description>&lt;P&gt;where do you find that info? I'm in UK so guess some european host&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 20:37:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267317#M13229</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-03T20:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267325#M13230</link>
      <description>&lt;P&gt;at the upper right corner, click "?" button, and go to About Power BI.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 20:47:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267325#M13230</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-03T20:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267329#M13231</link>
      <description>&lt;P&gt;north europe (ireland)&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 20:49:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267329#M13231</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-03T20:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267335#M13232</link>
      <description>&lt;P&gt;&lt;SPAN class="field"&gt;My info:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="field"&gt;Version&lt;/SPAN&gt;&lt;SPAN class="value"&gt;13.0.2597.188&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="field"&gt;Activity ID......&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="field"&gt;Time&lt;/SPAN&gt;&lt;SPAN class="value"&gt;Tue Oct 03 2017 15:54:20 GMT-0500 (Central Daylight Time)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="field"&gt;Your data is stored in&lt;/SPAN&gt;&lt;SPAN class="value"&gt;North Central US (Illinois)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="value"&gt;Error screenshots from service:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="value"&gt;&lt;img /&gt;&lt;img /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 21:00:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267335#M13232</guid>
      <dc:creator>granthworth</dc:creator>
      <dc:date>2017-10-03T21:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267353#M13233</link>
      <description>&lt;P&gt;Sorry I have no idea as not really a techy.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 22:03:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267353#M13233</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-03T22:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API v2,  as API1 has been turned off</title>
      <link>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267355#M13234</link>
      <description>&lt;P&gt;seems &amp;nbsp;i have misled everyone. I rechecked and doesnt seem I had applied the source changes in my model. i just did republished and now have the same error as you guys. That's a little frustrating to say the least.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 22:17:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Power-Query/Dropbox-API-v2-as-API1-has-been-turned-off/m-p/267355#M13234</guid>
      <dc:creator>masplin</dc:creator>
      <dc:date>2017-10-03T22:17:31Z</dc:date>
    </item>
  </channel>
</rss>

