<?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: Drop-in Chooser on Windows Phone 8.1 in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114448#M3369</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;My useragent:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 920) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537

{
  "ua": "Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 920) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537",
  "browser": {
    "name": "IEMobile",
    "version": "11.0",
    "major": "11"
  },
  "engine": {
    "name": "Trident",
    "version": "7.0"
  },
  "os": {
    "name": "Windows Phone",
    "version": "8.1"
  },
  "device": {
    "model": "Lumia 920",
    "vendor": "Nokia",
    "type": "mobile"
  },
  "cpu": {}
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 16 Mar 2015 22:12:42 GMT</pubDate>
    <dc:creator>Tyhrstan B.1</dc:creator>
    <dc:date>2015-03-16T22:12:42Z</dc:date>
    <item>
      <title>Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114440#M3361</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;On the previous dropbox forum I posted an issue regarding the Dropbox Chooser on Windows Phone.&lt;BR /&gt;
I stated that when using desktop mode on IE (windows phone) the dropbox chooser works as expected, and only on Mobile mode it did'nt work.&lt;/P&gt;

&lt;H2&gt;I received the following answer on this topic:&lt;/H2&gt;

&lt;P&gt;Hi There,&lt;BR /&gt;
I just tested and can't seem to get the chooser to work in windows phone 8, even with desktop mode enabled.  (Though desktop mode does bypass our check).  The trouble seems to be in how the windows phone handles popups.  Whereas all other browsers correctly open a popup when asked to do so, windows phone seems to interpret our attempt to open a popup as a redirect.  Since the user has been redirected away from the page they were on, we can't return the chosen file info to the page in the same context the user last saw that page.  I believe the behavior is correct as is.&lt;/P&gt;

&lt;H2&gt;-Chris&lt;/H2&gt;

&lt;P&gt;The probable reason might be that I was using Windows Phone 8.1. &lt;BR /&gt;
You were right about the fact that Windows Phone IE doesn't open a popup in a new window cause this disturbes the flow and every page runs in an isolated mode (so they can't interact). But the 'pop-up' can still interact with the 'parent' page.&lt;/P&gt;

&lt;P&gt;I've created a similar construction where a pop-up is used to authenticate a user in linkedin and when the user returns to the 'returnurl' I call &lt;CODE&gt;window.opener.{function}&lt;/CODE&gt; to invoke a function on the parent page.&lt;/P&gt;

&lt;P&gt;And this works on Windows Phone 8.1&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:44:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114440#M3361</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2019-05-29T09:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114441#M3362</link>
      <description>&lt;P&gt;Do you have a question? Or are you proposing a way to make the Chooser work on Windows Phone 8.1? (If so, please provide some code so we can see what you're talking about.)&lt;/P&gt;</description>
      <pubDate>Fri, 06 Mar 2015 02:31:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114441#M3362</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-06T02:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114442#M3363</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Well, my proposel is that the Dropbox Chooser already works on Windows Phone 8.1, except the &lt;CODE&gt;Dropbox.isBrowserSupported()&lt;/CODE&gt; function prevents it from working.&lt;/P&gt;

&lt;P&gt;In visual studio I can start a IE debug session on Windows Phone, if I Then replace the &lt;CODE&gt;Dropbox.isBrowserSupported()&lt;/CODE&gt; function by : &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;function() { return true; }
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;The dropbox file chooser works as expected.&lt;/P&gt;

&lt;P&gt;So my proposel would be to finetune the isBrowserSupported function to enable Windows Phone 8.1, &lt;BR /&gt;
useragents for IE11 on Windows Phone 8.1 can be found here &lt;A href="https://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx" rel="nofollow noreferrer"&gt;https://msdn.microsoft.com/en-us/library/ie/hh869301(v=vs.85).aspx&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2015 15:22:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114442#M3363</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-09T15:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114443#M3364</link>
      <description>&lt;P&gt;Tyhrstan, we can't reproduce this behavior. I've created a simple page (&lt;A href="http://wpchooser.site44.com/" rel="nofollow noreferrer"&gt;http://wpchooser.site44.com/&lt;/A&gt;) that overrides &lt;CODE&gt;isBrowserSupported&lt;/CODE&gt; as you did, and it doesn't seem to work on the Windows Phone 8.1 device I'm testing on.&lt;/P&gt;

&lt;P&gt;Would you mind trying that same page to see if it works for you? If so, could you provide details about the device you're testing with?&lt;/P&gt;</description>
      <pubDate>Sat, 14 Mar 2015 03:32:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114443#M3364</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-14T03:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114444#M3365</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;

&lt;P&gt;I've looked at the site.. and at first I couldn't reproduce it as well.&lt;/P&gt;

&lt;P&gt;But it seems that the Alert() function isn't working. the screen freezes, &lt;/P&gt;

&lt;P&gt;When debugging the page I stepped over the alert function and executed: $('#clickme').text('Worked: ' + files[0].link); This showed the selected file in de click button.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2015 18:31:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114444#M3365</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-16T18:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114445#M3366</link>
      <description>&lt;P&gt;What device are you using?&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2015 21:45:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114445#M3366</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-16T21:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114446#M3367</link>
      <description>&lt;P&gt;I'm using a Lumia 920, using Visual Studio I can start a debugging IE session on my phone.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2015 21:58:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114446#M3367</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-16T21:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114447#M3368</link>
      <description>&lt;P&gt;Would you mind browsing to &lt;A href="http://www.whatsmyua.com/" rel="nofollow noreferrer"&gt;http://www.whatsmyua.com/&lt;/A&gt; and copying the user agent? I'm trying to figure out why this would work on your device and not ours.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2015 22:09:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114447#M3368</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-16T22:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114448#M3369</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;My useragent:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 920) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537

{
  "ua": "Mozilla/5.0 (Mobile; Windows Phone 8.1; Android 4.0; ARM; Trident/7.0; Touch; rv:11.0; IEMobile/11.0; NOKIA; Lumia 920) like iPhone OS 7_0_3 Mac OS X AppleWebKit/537 (KHTML, like Gecko) Mobile Safari/537",
  "browser": {
    "name": "IEMobile",
    "version": "11.0",
    "major": "11"
  },
  "engine": {
    "name": "Trident",
    "version": "7.0"
  },
  "os": {
    "name": "Windows Phone",
    "version": "8.1"
  },
  "device": {
    "model": "Lumia 920",
    "vendor": "Nokia",
    "type": "mobile"
  },
  "cpu": {}
}
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 16 Mar 2015 22:12:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114448#M3369</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-16T22:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114449#M3370</link>
      <description>&lt;P&gt;My Lumia 920 runs:&lt;BR /&gt;
Windows Phone 8.1 Update&lt;BR /&gt;
version: 8.10.14234.375&lt;/P&gt;

&lt;P&gt;with the Lumia Denim update&lt;/P&gt;</description>
      <pubDate>Mon, 16 Mar 2015 22:15:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114449#M3370</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-16T22:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114450#M3371</link>
      <description>&lt;P&gt;It's possible the Lumia Denim update is the important difference. The page fails in the tests I've done, so we can't enable it for all Windows Phone 8.1 users. I think that for now we'll leave things as-is.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 05:58:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114450#M3371</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-17T05:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114451#M3372</link>
      <description>&lt;P&gt;I'm not sure if this is the case,&lt;BR /&gt;
The emulator in Visual Studio runs regular Windows Phone 8.1 and I can produce similar results.&lt;/P&gt;

&lt;P&gt;If you could change:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;button id="clickme"&amp;gt;Click me&amp;lt;/button&amp;gt;
    &amp;lt;script&amp;gt;
        Dropbox.isBrowserSupported = function() { return true; };
        $('#clickme').click(function (e) {
            e.preventDefault();
            Dropbox.choose({
                linkType: 'direct',
                success: function (files) {
                    alert('Worked: ' + files[0].link);
                }
            });
        });
    &amp;lt;/script&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;to:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;button id="clickme"&amp;gt;Click me&amp;lt;/button&amp;gt;
&amp;lt;br /&amp;gt;
&amp;lt;span id="result"&amp;gt;&amp;lt;/span&amp;gt;
    &amp;lt;script&amp;gt;
        Dropbox.isBrowserSupported = function() { return true; };
        $('#clickme').click(function (e) {
            e.preventDefault();
            Dropbox.choose({
                linkType: 'direct',
                success: function (files) {
                    $('#result').text('Worked: ' + files[0].link);
                }
            });
        });
    &amp;lt;/script&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I think it should work.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 14:33:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114451#M3372</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-17T14:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114452#M3373</link>
      <description>&lt;P&gt;That change won't matter on my test device, since the Chooser "popup" (not really) never closes, so that code is never executed.&lt;/P&gt;

&lt;P&gt;I was unable to get the phone emulator to connect to the internet on my Surface, so I gave up testing there and used a real device instead. I imagine the emulator uses the latest IE also, so your result doesn't surprise me. (If it works on your Nokia, I would expect it to work on the emulator too.)&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 14:37:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114452#M3373</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-17T14:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114453#M3374</link>
      <description>&lt;P&gt;I understand you can't make changes if you can't reproduce this behaviour.&lt;/P&gt;

&lt;P&gt;The emulator (Virtual Machine) in my Visual Studio doens't run the latest version, I haven't got the latest (Windows Phone 8.1 Update 1) emulators installed from &lt;A href="https://dev.windows.com/en-us/develop/downloads" rel="nofollow noreferrer"&gt;https://dev.windows.com/en-us/develop/downloads&lt;/A&gt;, only the Windows Phone 8.1 version.&lt;/P&gt;

&lt;P&gt;I hope future updates will make this possible.&lt;/P&gt;

&lt;P&gt;Could you tell me wich phone model / OS version your using? Perhaps I can find the same phone and OS version to test my findings.&lt;/P&gt;</description>
      <pubDate>Tue, 17 Mar 2015 14:48:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114453#M3374</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-17T14:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114454#M3375</link>
      <description>&lt;P&gt;Okay, we actually managed to reproduce the behavior you're seeing. The alert was indeed the problem, though I don't understand how. (The alert on the background page seems to have blocked the Chooser page from actually closing?)&lt;/P&gt;

&lt;P&gt;In any case, this works for us too on Windows Phone 8.1 Update 1. We're trying to track down a Windows Phone 8.1 &lt;EM&gt;without&lt;/EM&gt; any updates to verify that it works on all versions of Windows Phone 8.1. If it does, we'll change the logic in the library to allow use on Windows Phone 8.1.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 03:51:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114454#M3375</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-18T03:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114455#M3376</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;

&lt;P&gt;Great that you've been able to reproduce the behaviour. &lt;/P&gt;

&lt;P&gt;I believe what might be the reason is that the alert is initiated from the background page, while the background page is not visible. &lt;BR /&gt;
To my understand the chooser works as following: when you select a file from the chooser the [success] function on background page is invoked and after this function completes the chooser page is 'closed'. probably an alert message can only be shown from and on the active page.&lt;/P&gt;

&lt;P&gt;I'm looking forward to seeing the changes in library!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Mar 2015 15:29:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114455#M3376</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-18T15:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114456#M3377</link>
      <description>&lt;P&gt;We managed to test this on a non-updated Windows Phone 8.1, and the Chooser works fine there too.&lt;/P&gt;

&lt;P&gt;An update to the JS library should come out early next week, at which point the Chooser should just work by default on Windows Phone 8.1. Thanks much for pointing this out and hanging in there while we tested!&lt;/P&gt;</description>
      <pubDate>Sat, 21 Mar 2015 11:36:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114456#M3377</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-03-21T11:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Drop-in Chooser on Windows Phone 8.1</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114457#M3378</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;

&lt;P&gt;That's great news! I'm already seeing the updated version.&lt;BR /&gt;
I'm glad I could help out.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Mar 2015 14:05:44 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Drop-in-Chooser-on-Windows-Phone-8-1/m-p/114457#M3378</guid>
      <dc:creator>Tyhrstan B.1</dc:creator>
      <dc:date>2015-03-23T14:05:44Z</dc:date>
    </item>
  </channel>
</rss>

