<?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: Reading content from a file and show it WITHOUT downloading in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468784#M23903</link>
    <description>&lt;P&gt;This appears to indicate that the&amp;nbsp;Dropbox library wasn't successfully loaded. Were you able to add it as instructed in &lt;A href="https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/467500/highlight/true#M23843" target="_self"&gt;my earlier comment&lt;/A&gt;? Did the Gradle sync complete successfully&amp;nbsp;after that?&lt;/P&gt;</description>
    <pubDate>Tue, 10 Nov 2020 19:56:22 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2020-11-10T19:56:22Z</dc:date>
    <item>
      <title>Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464487#M23743</link>
      <description>&lt;P&gt;hi all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently I am developing an Android App with Android Studio and I got Dropbox API to get information from Dropbox. I am blocked with a method to get information from Dopbox account (.txt, .html, .jpg whatever file is displayed there) and display it on the screen of the simulator without download that file in any folder (reading directly from Dropbox). I am new with the API, could anyone share with me an example code to archieve it? or send me any information about that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 12:17:18 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464487#M23743</guid>
      <dc:creator>cris3c</dc:creator>
      <dc:date>2020-10-26T12:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464724#M23753</link>
      <description>&lt;P&gt;To use the&amp;nbsp;Dropbox API from an Android app, we&amp;nbsp;recommend using &lt;A href="https://github.com/dropbox/dropbox-sdk-java" target="_self"&gt;the official Dropbox API v2 Java SDK&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With that, you can use the&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#download-java.lang.String-java.lang.String-" target="_self"&gt;download&lt;/A&gt; or&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#downloadBuilder-java.lang.String-" target="_self"&gt;downloadBuilder&lt;/A&gt; methods to access file data from the connected&amp;nbsp;Dropbox account.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's an example of calling the&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/files/DbxUserFilesRequests.html#download-java.lang.String-java.lang.String-" target="_self"&gt;download&lt;/A&gt; method in an Android app &lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/java/com/dropbox/core/examples/android/DownloadFileTask.java#L70" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;While that example happens to save the file to the local filesystem, you are not required to do so. You can use the returned &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/DbxDownloader.html" target="_self"&gt;DbxDownloader&lt;/A&gt; to write to an OutputStream, using &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/DbxDownloader.html#download-java.io.OutputStream-" target="_self"&gt;DbxDownloader.download&lt;/A&gt;, or get an&amp;nbsp;InputStream of the file content, using&amp;nbsp;&lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/DbxDownloader.html#getInputStream--" target="_self"&gt;DbxDownloader.getInputStream&lt;/A&gt;,&amp;nbsp; and then use that InputStream however you wish.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 14:55:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464724#M23753</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-10-26T14:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464820#M23759</link>
      <description>&lt;P&gt;I didn´t get it! Can please anyone help me out?&lt;/P&gt;&lt;P&gt;I am new on Android Studio, I need to know hoy to make the call from the On Create method, or life circle of the call.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 19:44:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464820#M23759</guid>
      <dc:creator>cris3c</dc:creator>
      <dc:date>2020-10-26T19:44:50Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464839#M23760</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1366467"&gt;@cris3c&lt;/a&gt;&amp;nbsp;Did you see &lt;A href="https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464724/highlight/true#M23753" target="_blank"&gt;my comment from earlier&lt;/A&gt;? Please refer to the links there for a number of useful resources.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If something isn't working as expected, or you're stuck on something, perhaps you could share what you have so far and what problem you're currently seeing.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 20:59:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/464839#M23760</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-10-26T20:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/467480#M23842</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have cloned the example code in my local and opened it with Android Studio. Reading your tutorial in the following link:&amp;nbsp;&lt;A href="https://github.com/dropbox/dropbox-sdk-java#authorize" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-java#authorize&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I started to follow the steps to build from source and run the examples, I could not pass the first step. It said that: "&lt;EM&gt;Follow the instructions in the "Build from source" section above.&lt;/EM&gt;" and that means that you have to run&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;gradlew build&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;code but when I run that it does not work due to next error:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="photo 1" style="width: 916px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/18811i9C0762DAF08FDEFB/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="photo 1" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;photo 1&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Could you help me out, please? Am I following the steps properly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 18:43:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/467480#M23842</guid>
      <dc:creator>cris3c</dc:creator>
      <dc:date>2020-11-05T18:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/467500#M23843</link>
      <description>&lt;P&gt;Technically you don't need to build from source if you don't need to change the source code for the SDK (which you probably don't have reason to do). Instead, it's much easier to just install a released version. For example, you can replace &lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/build.gradle#L60" target="_self"&gt;this line from the Android example build.gradle&lt;/A&gt;:&lt;/P&gt;
&lt;PRE&gt;    implementation group: 'com.dropbox.core', name: 'dropbox-core-sdk', version: '0-SNAPSHOT', changing: true&lt;/PRE&gt;
&lt;P&gt;With this instead:&lt;/P&gt;
&lt;PRE&gt;    implementation &lt;SPAN class="pl-s"&gt;&lt;SPAN class="pl-pds"&gt;'&lt;/SPAN&gt;com.dropbox.core:dropbox-core-sdk:3.1.5&lt;SPAN class="pl-pds"&gt;'&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;/PRE&gt;
&lt;P&gt;Then once you do a Gradle sync for that change in Android Studio, it will download and install it for you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2020 19:55:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/467500#M23843</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-11-05T19:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468109#M23859</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The code lines you told me work perfectly but I found another error. I think android studio does not find the executable run.exe. I attach the following terminal message. It is in spanish but it can be read easily.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you help me out, please?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 994px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/18862iA18ED60AE7BFEAD4/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Nov 2020 19:56:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468109#M23859</guid>
      <dc:creator>cris3c</dc:creator>
      <dc:date>2020-11-08T19:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468402#M23873</link>
      <description>&lt;P&gt;I see you're now attempting to run the "authorize" example, and are trying to do so via a "run" command. That's actually referring to &lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/run" target="_self"&gt;this "run" file&lt;/A&gt;&amp;nbsp;which is a bash script, so you'd need to be running in an environment that can run bash scripts (such as cygwin).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're just trying to build an Android app though, I&amp;nbsp;recommend just referring to the Android example app. The "authorize" example is just a command line app.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2020 18:32:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468402#M23873</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-11-09T18:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468770#M23902</link>
      <description>&lt;P&gt;Hi, I was trying to run the example&amp;nbsp;&lt;SPAN&gt;in an environment that does not support bash scripts. So as you said, I built the android example, but when I try to run it this error comes:&lt;/SPAN&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;EM&gt;API 'variant.getMappingFile()' is obsolete and has been replaced with 'variant.getMappingFileProvider()'.&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;API 'variantOutput.getPackageApplication()' is obsolete and has been replaced with 'variant.getPackageApplicationProvider()'.&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/DownloadFileTask.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot access DbxClientV2Base class file for com.dropbox.core.v2.DbxClientV2Base not found&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/FilesActivity.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FolderMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class ListFolderResult&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;uses or overrides a deprecated API.&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/FilesAdapter.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class Metadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class Metadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class Metadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class Metadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FolderMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FolderMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FolderMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FolderMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/FileThumbnailRequestHandler.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol variable ThumbnailSize&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol variable ThumbnailFormat&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol method files()&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/GetCurrentAccountTask.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.users does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FullAccount&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FullAccount&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FullAccount&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FullAccount&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol method users()&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/ListFolderTask.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class ListFolderResult&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class ListFolderResult&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class ListFolderResult&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class ListFolderResult&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol method files()&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/UploadFileTask.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.files does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FileMetadata&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol variable WriteMode&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol method files()&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;src/main/java/com/dropbox/core/examples/android/UserActivity.java&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;package com.dropbox.core.v2.users does not exist&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;&lt;EM&gt;cannot find symbol class FullAccount&lt;/EM&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I think the error is in the packages. Could you please help me out?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 19:38:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468770#M23902</guid>
      <dc:creator>cris3c</dc:creator>
      <dc:date>2020-11-10T19:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468784#M23903</link>
      <description>&lt;P&gt;This appears to indicate that the&amp;nbsp;Dropbox library wasn't successfully loaded. Were you able to add it as instructed in &lt;A href="https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/467500/highlight/true#M23843" target="_self"&gt;my earlier comment&lt;/A&gt;? Did the Gradle sync complete successfully&amp;nbsp;after that?&lt;/P&gt;</description>
      <pubDate>Tue, 10 Nov 2020 19:56:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/468784#M23903</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-11-10T19:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473335#M24037</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Finally, I achieve to get into the Dropbox Android Application but it failed when I attempted to get the list of the files I have in my dropbox account, the error is:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura.PNG" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/19296i091BCDA2ECD297E6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura.PNG" alt="Captura.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Additional to this, I set in the permission in the app the following check:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura.PNG" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/19297iCF7E2614DDA718D6/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura.PNG" alt="Captura.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;With that, I thought the problem must have been solved, but it is not. Always the same problem. Could you help me out?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 17:25:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473335#M24037</guid>
      <dc:creator>cris3c</dc:creator>
      <dc:date>2020-11-25T17:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473340#M24038</link>
      <description>&lt;P&gt;The 'missing_scope' error indicates that while the app is permitted to use that scope, the particular access token you're using to make the API call does not have that scope granted. Be aware that just adding a scope to your app via the App Console does not retroactively grant that scope to existing access tokens.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That being the case, to make any API calls that require that scope, you'll need to get a new access token with that scope.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 17:32:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473340#M24038</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-11-25T17:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473360#M24041</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once I have checked all the scopes I need, everything I have to do is GENERATE an access token as you see in the image:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Captura.PNG" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/19300iD2CC9C38A06F7DF3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Captura.PNG" alt="Captura.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;After that, have I to write that access token in any site of the android example code? If I have to, where? When it is generated, will everything be there or do I have to do something to write it somewhere in the code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Nov 2020 18:09:00 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473360#M24041</guid>
      <dc:creator>cris3c</dc:creator>
      <dc:date>2020-11-25T18:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Reading content from a file and show it WITHOUT downloading</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473920#M24064</link>
      <description>&lt;P&gt;Normally, you should implement the OAuth app authorization flow in your app, as shown in &lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/java/com/dropbox/core/examples/android/DropboxActivity.java" target="_self"&gt;this example&lt;/A&gt;, in order to allow the end-user to connect their own&amp;nbsp;Dropbox account so the app can&amp;nbsp;receive the access token for that user's account programmatically once they approve it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are only connecting your own account in particular though, you technically don't need to implement the app authorization flow. You can just hard-code your own access token &lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/tutorial/src/main/java/com/dropbox/core/examples/tutorial/Main.java#L28" target="_self"&gt;like in this example&lt;/A&gt;. (Though, if you're using short-lived access tokens and refresh tokens for offline/background access, you'd want to use &lt;A href="https://dropbox.github.io/dropbox-sdk-java/api-docs/v3.1.x/com/dropbox/core/v2/DbxClientV2.html#DbxClientV2-com.dropbox.core.DbxRequestConfig-com.dropbox.core.oauth.DbxCredential-" target="_self"&gt;this constructor&lt;/A&gt; instead.) Note that access tokens allow access to your account though, so you shouldn't distribute them to other people.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Nov 2020 15:53:04 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Reading-content-from-a-file-and-show-it-WITHOUT-downloading/m-p/473920#M24064</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-11-27T15:53:04Z</dc:date>
    </item>
  </channel>
</rss>

