<?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 notification to my app that a file has been changed in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/194232#M8759</link>
    <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have decided for webhooks and I want to build the solution on the server-side. The problem is, Dropbox is integrated in both client-side and server-side (as long as I understand correctly). The client side is a button which is a Dropbox Chooser. The server-side is a tree view of the Dropbox files which uses server-side function from the DB API get_metadata(). This metadata is then sent to a JavaScript function which recursively shows all of the files and enables option to download them from that view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is, can I implement the same solution for both of these components, and can I use the webhook also for the Dropbox Chooser? This solution is not implemented by me, but by developers before me, and for example when I log out of the component for Dropbox Chooser, the tree view account still stays because it is connected via a dropbox confirmation code in some other place in the web app. Is there a way to make this more consistent and implement webhook effectively?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response, I appreciate it very much&lt;/P&gt;</description>
    <pubDate>Mon, 14 Nov 2016 09:58:31 GMT</pubDate>
    <dc:creator>mayas95</dc:creator>
    <dc:date>2016-11-14T09:58:31Z</dc:date>
    <item>
      <title>Dropbox notification to my app that a file has been changed</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/192371#M8546</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am developing a web app with php and javascript which uses dropbox for getting files. The problem is, everytime I load the file and then I change it on Dropbox, the file in my app stays unchanged.&lt;/P&gt;&lt;P&gt;Is there a chance that Dropbox will notify my app so I will know when to reload the file?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your responses&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:28:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/192371#M8546</guid>
      <dc:creator>mayas95</dc:creator>
      <dc:date>2019-05-29T09:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox notification to my app that a file has been changed</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/192372#M8547</link>
      <description>Moved to the API forum.</description>
      <pubDate>Fri, 28 Oct 2016 14:04:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/192372#M8547</guid>
      <dc:creator>Rich</dc:creator>
      <dc:date>2016-10-28T14:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox notification to my app that a file has been changed</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/192398#M8552</link>
      <description>&lt;P&gt;You can use &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder" target="_self"&gt;/2/files/list_folder&lt;/A&gt;&amp;nbsp;and &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-continue" target="_self"&gt;/2/files/list_folder/continue&lt;/A&gt;&amp;nbsp;to get the file listing and check for further changes over time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the integration is built client-side, you can also use &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#files-list_folder-longpoll" target="_self"&gt;/2/files/list_folder/longpoll&lt;/A&gt;&amp;nbsp;for low-latency detection&amp;nbsp;of changes while your app is open.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(If you're using an SDK or library, there will be corresponding methods for those endpoints.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For server-side integrations, you can use &lt;A href="https://www.dropbox.com/developers/reference/webhooks" target="_self"&gt;webhooks&lt;/A&gt;&amp;nbsp;to be notified of changes.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2016 17:57:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/192398#M8552</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-10-28T17:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox notification to my app that a file has been changed</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/194232#M8759</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have decided for webhooks and I want to build the solution on the server-side. The problem is, Dropbox is integrated in both client-side and server-side (as long as I understand correctly). The client side is a button which is a Dropbox Chooser. The server-side is a tree view of the Dropbox files which uses server-side function from the DB API get_metadata(). This metadata is then sent to a JavaScript function which recursively shows all of the files and enables option to download them from that view.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is, can I implement the same solution for both of these components, and can I use the webhook also for the Dropbox Chooser? This solution is not implemented by me, but by developers before me, and for example when I log out of the component for Dropbox Chooser, the tree view account still stays because it is connected via a dropbox confirmation code in some other place in the web app. Is there a way to make this more consistent and implement webhook effectively?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response, I appreciate it very much&lt;/P&gt;</description>
      <pubDate>Mon, 14 Nov 2016 09:58:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/194232#M8759</guid>
      <dc:creator>mayas95</dc:creator>
      <dc:date>2016-11-14T09:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox notification to my app that a file has been changed</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/194303#M8772</link>
      <description>The Dropbox Chooser is a separate kind of integration than the Dropbox API (e.g., the get_metadata method). &lt;BR /&gt;&lt;BR /&gt;The Dropbox Chooser is a simple pre-built component that just allows the end-user to select a file from their account and give it to the app. &lt;BR /&gt;&lt;BR /&gt;You can use the Dropbox Chooser and the Dropbox API in the same app, but they don't work the same way. Further, the Chooser itself doesn't trigger webhook notifications, since there isn't any change in the user's account (unless they happen to upload new files).</description>
      <pubDate>Mon, 14 Nov 2016 19:05:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-notification-to-my-app-that-a-file-has-been-changed/m-p/194303#M8772</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-11-14T19:05:06Z</dc:date>
    </item>
  </channel>
</rss>

