<?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: Authorization and unattended batch process in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352369#M20163</link>
    <description>&lt;P&gt;Hi Glenn,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a specific reason that&amp;nbsp;your application needs to reconnect with the Dropbox app every time the script runs?&lt;/P&gt;
&lt;P&gt;Generally speaking, most integrations would use a stored Access Token in order to run their script and automate the collection of data. OAuth Flows are really only necessary when you need users to explicitly authorize your app to use their data.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Jun 2019 19:40:49 GMT</pubDate>
    <dc:creator>TaylorKrusen</dc:creator>
    <dc:date>2019-06-27T19:40:49Z</dc:date>
    <item>
      <title>Authorization and unattended batch process</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352120#M20148</link>
      <description>&lt;P&gt;Is it possible to return an access token without human intervention during the authorization process?&amp;nbsp; I am writing a batch process to be run on a server that connects to a dropbox app with AppKey:AppSecret and checks for newly created files and copy them to a server and record the file details.&amp;nbsp; However, it seems that the decision to authorise and send an access key cannot be automated and requires the owner to press something.&amp;nbsp; Am I being particularly stupid and missing something obvious?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Glenn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 16:21:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352120#M20148</guid>
      <dc:creator>GlennAlligator</dc:creator>
      <dc:date>2019-06-26T16:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization and unattended batch process</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352139#M20149</link>
      <description>&lt;P&gt;Hi Glenn,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can't return an access token without some element of human approval. Almost all&amp;nbsp; OAuth Flow implementations require that a user gives consent to share their data with your application.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 18:09:42 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352139#M20149</guid>
      <dc:creator>TaylorKrusen</dc:creator>
      <dc:date>2019-06-26T18:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization and unattended batch process</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352242#M20159</link>
      <description>&lt;P&gt;Thanks for your reply Taylor.&lt;/P&gt;&lt;P&gt;Yes, this is how it looks so I'll have to find another way.&amp;nbsp; Many Implementations of the Implicit mode include X509 certificates which I think gives you better security than just relying on&amp;nbsp; Key/Secret pair.&amp;nbsp; I know that Implicit mode is frowned upon generally but so many processes are run as back-end server batches which by the very nature are unattended and run at 2 o'clock in the morning.&amp;nbsp; I don't mind jumping thru as many software hoops as might be required but to not have a way of setting up unattended server batches is a major failing in dropbox.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 08:41:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352242#M20159</guid>
      <dc:creator>GlennAlligator</dc:creator>
      <dc:date>2019-06-27T08:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization and unattended batch process</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352369#M20163</link>
      <description>&lt;P&gt;Hi Glenn,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a specific reason that&amp;nbsp;your application needs to reconnect with the Dropbox app every time the script runs?&lt;/P&gt;
&lt;P&gt;Generally speaking, most integrations would use a stored Access Token in order to run their script and automate the collection of data. OAuth Flows are really only necessary when you need users to explicitly authorize your app to use their data.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jun 2019 19:40:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352369#M20163</guid>
      <dc:creator>TaylorKrusen</dc:creator>
      <dc:date>2019-06-27T19:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization and unattended batch process</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352427#M20169</link>
      <description>&lt;P&gt;Yes got it working now.&amp;nbsp; I thought the access token would only have a very short persistence and that it needed to be rebuilt for every session.&amp;nbsp; As the access token never expires that will work great.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 08:01:25 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352427#M20169</guid>
      <dc:creator>GlennAlligator</dc:creator>
      <dc:date>2019-06-28T08:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization and unattended batch process</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352498#M20173</link>
      <description>&lt;P&gt;Excellent! Happy to hear that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please feel free to post again if another question come up in the future!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 15:33:51 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Authorization-and-unattended-batch-process/m-p/352498#M20173</guid>
      <dc:creator>TaylorKrusen</dc:creator>
      <dc:date>2019-06-28T15:33:51Z</dc:date>
    </item>
  </channel>
</rss>

