<?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 Upload sqlite db file to my application folder only using android app not working in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-sqlite-db-file-to-my-application-folder-only-using/m-p/583362#M27172</link>
    <description>&lt;P&gt;I have simple image based notes taking like app and i am storing all data and image in SQLite database. Now i need to implement sync functionality with drop box using java sdk, already downloaded project. But the file is not getting upload and can not read from it, getting error&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error: com.dropbox.core.InvalidAccessTokenException: {"error_summary": "missing_scope/.", "error": {".tag": "missing_scope", "required_scope": "files.metadata.read"}}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and getting&amp;nbsp; image file upload error from demo&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error: com.dropbox.core.InvalidAccessTokenException: {"error_summary": "missing_scope/...", "error": {".tag": "missing_scope", "required_scope": "files.content.write"}}&lt;/P&gt;</description>
    <pubDate>Mon, 14 Mar 2022 15:32:06 GMT</pubDate>
    <dc:creator>deeplove</dc:creator>
    <dc:date>2022-03-14T15:32:06Z</dc:date>
    <item>
      <title>Upload sqlite db file to my application folder only using android app not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-sqlite-db-file-to-my-application-folder-only-using/m-p/583362#M27172</link>
      <description>&lt;P&gt;I have simple image based notes taking like app and i am storing all data and image in SQLite database. Now i need to implement sync functionality with drop box using java sdk, already downloaded project. But the file is not getting upload and can not read from it, getting error&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error: com.dropbox.core.InvalidAccessTokenException: {"error_summary": "missing_scope/.", "error": {".tag": "missing_scope", "required_scope": "files.metadata.read"}}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and getting&amp;nbsp; image file upload error from demo&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error: com.dropbox.core.InvalidAccessTokenException: {"error_summary": "missing_scope/...", "error": {".tag": "missing_scope", "required_scope": "files.content.write"}}&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 15:32:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-sqlite-db-file-to-my-application-folder-only-using/m-p/583362#M27172</guid>
      <dc:creator>deeplove</dc:creator>
      <dc:date>2022-03-14T15:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Upload sqlite db file to my application folder only using android app not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-sqlite-db-file-to-my-application-folder-only-using/m-p/583467#M27173</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1526087"&gt;@deeplove&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Error: com.dropbox.core.InvalidAccessTokenException: {"error_summary": "missing_scope/.", "error": {".tag": "missing_scope", "&lt;STRONG&gt;required_scope&lt;/STRONG&gt;": "&lt;STRONG&gt;files.metadata.read&lt;/STRONG&gt;"}}&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Error: com.dropbox.core.InvalidAccessTokenException: {"error_summary": "missing_scope/...", "error": {".tag": "missing_scope", "&lt;STRONG&gt;required_scope&lt;/STRONG&gt;": "&lt;STRONG&gt;files.content.write&lt;/STRONG&gt;"}}&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1526087"&gt;@deeplove&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;The reason for your issue can be seen within the errors messages. 🤷 Just follow them! &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt; In particular you can't enumerate your files because of missing metadata read scope (i.e. read permission for metadata) and you can't write any file content because of missing content write scope (i.e. write permission to files content). Seems you have forgot select needed scopes (permissions) and that's why have restricted yourself.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 14:48:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-sqlite-db-file-to-my-application-folder-only-using/m-p/583467#M27173</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-03-14T14:48:32Z</dc:date>
    </item>
    <item>
      <title>Re: Upload sqlite db file to my application folder only using android app not working</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-sqlite-db-file-to-my-application-folder-only-using/m-p/583508#M27175</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1526087"&gt;@deeplove&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790"&gt;@Здравко&lt;/a&gt;&amp;nbsp;is right regarding the missing scopes. You can add scopes to your application by going to the &lt;A href="https://www.dropbox.com/developers/apps" target="_self"&gt;app console&lt;/A&gt;, navigating to the app you are using, go into the permissions tab, and add the scopes for this application. To fix the issues you specifically mentioned, you would need to add files.metadata.read and files.metadata.write.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additionally, you will need to re-authenticate with the app to get access to these scopes since scopes are linked to an access/refresh token.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Brad&lt;/P&gt;</description>
      <pubDate>Mon, 14 Mar 2022 17:15:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-sqlite-db-file-to-my-application-folder-only-using/m-p/583508#M27175</guid>
      <dc:creator>Brogers</dc:creator>
      <dc:date>2022-03-14T17:15:09Z</dc:date>
    </item>
  </channel>
</rss>

