<?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: Files uploaded but not in dropbox directory in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184881#M7780</link>
    <description>&lt;P&gt;Please open an API ticket with the specifics on the app name issue and we can check on it for you:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/contact" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/contact&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 20 May 2016 23:56:02 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2016-05-20T23:56:02Z</dc:date>
    <item>
      <title>Files uploaded but not in dropbox directory</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184877#M7776</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I use the files_upload function and get a result back that, as far as I can tell, is a successful transfer but the files is not in my dropbox. Can anyone tell from the response if there is an error on my side. I dont know what to look for in this result.&lt;/P&gt;
&lt;P&gt;result = FileMetadata(name=u'Thursday 19 May 2016 08:11:32PM.jpg', path_lower=u'/sentry/thursday 19 may 2016 08:11:32pm.jpg', path_display=u'/sentry/Thursday 19 May 2016 08:11:32PM.jpg', id=u'id:4DxFpPbFiSAAAAAAAAAAAQ', client_modified=datetime.datetime(2016, 5, 19, 18, 11, 36), server_modified=datetime.datetime(2016, 5, 19, 18, 11, 36), rev=u'2453de36221', size=51283, parent_shared_folder_id=None, media_info=None, sharing_info=None, property_groups=None, has_explicit_shared_members=None)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:33:20 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184877#M7776</guid>
      <dc:creator>Marius L.1</dc:creator>
      <dc:date>2019-05-29T09:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Files uploaded but not in dropbox directory</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184878#M7777</link>
      <description>&lt;P&gt;That response indicates the upload was successful. Are you sure you're looking at the right account when you look for the uploaded file? You can use the account information call to check what account you're linked to via the API for comparison.&lt;/P&gt;
&lt;P&gt;Also, if your app uses the "app folder" permission, note that the path "/sentry/Thursday 19 May 2016 08:11:32PM.jpg" via the API will correspond to the path "/Apps/&amp;lt;app folder name&amp;gt;/sentry/Thursday 19 May 2016 08:11:32PM.jpg" in the account.&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2016 03:25:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184878#M7777</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-05-20T03:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: Files uploaded but not in dropbox directory</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184879#M7778</link>
      <description>&lt;P&gt;Under my files heading I have this /Apps/sentry.&lt;/P&gt;
&lt;P&gt;This is my code to enable the dropbox&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if conf["use_dropbox_v2"]:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; client = dropbox.Dropbox(conf["access_token"])&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "[SUCCESS] dropbox account linked"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have done a manual auth using V1 API and the directory was created in my account.&lt;/P&gt;
&lt;P&gt;This is the manual code for V1&lt;/P&gt;
&lt;P&gt;if conf["use_dropbox"]:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # connect to dropbox and start the session authorization process&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; flow = DropboxOAuth2FlowNoRedirect(conf["dropbox_key"], conf["dropbox_secret"])&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "[INFO] Authorize this application: {}".format(flow.start())&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; authCode = raw_input("Enter auth code here: ").strip()&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; # finish the authorization and grab the Dropbox client&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (accessToken, userID) = flow.finish(authCode)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; client = DropboxClient(accessToken)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "[SUCCESS] dropbox account linked"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2016 14:14:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184879#M7778</guid>
      <dc:creator>Marius L.1</dc:creator>
      <dc:date>2016-05-20T14:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: Files uploaded but not in dropbox directory</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184880#M7779</link>
      <description>&lt;P&gt;Hi Gregory&lt;/P&gt;
&lt;P&gt;Just for feedback. That response means nothing as the API gives that even if the it does not connect. I had to delete the app and start from scratch do get it to work. It appears that the system thought that the app folder was deleted when it was in fact still ppresent. The strange thing is that it was working before.&lt;/P&gt;
&lt;P&gt;The only problem I have now is that my app name is still in the system although I cannot see it anywhere. I used a replacement name but I would like to use the original name. How do I go about fixing that?&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2016 16:55:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184880#M7779</guid>
      <dc:creator>Marius L.1</dc:creator>
      <dc:date>2016-05-20T16:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Files uploaded but not in dropbox directory</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184881#M7780</link>
      <description>&lt;P&gt;Please open an API ticket with the specifics on the app name issue and we can check on it for you:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/contact" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers/contact&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 20 May 2016 23:56:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Files-uploaded-but-not-in-dropbox-directory/m-p/184881#M7780</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-05-20T23:56:02Z</dc:date>
    </item>
  </channel>
</rss>

