<?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: Android authentication in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/235055#M12882</link>
    <description>&lt;P&gt;In build.grade file I add this:&lt;/P&gt;
&lt;PRE style="background-color: #2b2b2b; color: #a9b7c6; font-family: 'Courier New'; font-size: 9,0pt;"&gt;&lt;SPAN style="background-color: #344134;"&gt;dependencies&lt;/SPAN&gt; {&lt;BR /&gt;&lt;BR /&gt;    compile files(&lt;SPAN style="color: #6a8759;"&gt;'libs/dropbox-core-sdk-3.0.3.jar'&lt;/SPAN&gt;)&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;and add the jar with that name under the libs folder, then I create a new class just as the example with this code:&lt;/P&gt;
&lt;PRE style="background-color: #2b2b2b; color: #a9b7c6; font-family: 'Courier New'; font-size: 9,0pt;"&gt;&lt;SPAN style="color: #cc7832;"&gt;package &lt;/SPAN&gt;com.rasviet.mobility.sincro&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;android.content.SharedPreferences&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;android.support.v7.app.AppCompatActivity&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;com.dropbox.core.android.Auth&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt;/**&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt; * Created by Jritxal on 01/08/2017.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt; */&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;public class &lt;/SPAN&gt;DropboxActivity &lt;SPAN style="color: #cc7832;"&gt;extends &lt;/SPAN&gt;AppCompatActivity {&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;and it says it cannont resolve v7 that apears in red and so does AppCompatActivity ofc.&lt;/P&gt;</description>
    <pubDate>Wed, 02 Aug 2017 08:13:11 GMT</pubDate>
    <dc:creator>alca</dc:creator>
    <dc:date>2017-08-02T08:13:11Z</dc:date>
    <item>
      <title>Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/231853#M12646</link>
      <description>&lt;P&gt;In the previous api login could be performed to the device dropbox account by using the api key and the api secret, is there any way to do this with V2? What a I need is to be able to connect to diferent dropbox accounts in&amp;nbsp; V2?&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:20:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/231853#M12646</guid>
      <dc:creator>alca</dc:creator>
      <dc:date>2019-05-29T09:20:47Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/231855#M12647</link>
      <description>&lt;P&gt;There was a mistake with the post dont know ho to edit so I follow after "accounts in" before V2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;diferent devices, if this is not possible any more, what would be the best way to implement it on V2?&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2017 12:16:53 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/231855#M12647</guid>
      <dc:creator>alca</dc:creator>
      <dc:date>2017-07-12T12:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/231908#M12651</link>
      <description>&lt;P&gt;The app key and secret themselves are not enough to connect to a&amp;nbsp;Dropbox account, in either API v1 or API v2.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To connect to a&amp;nbsp;Dropbox account via the API, you need an "access token". You can get an access token for the user by sending the user through the OAuth app authorization flow. You can find an example implementation of doing this on Android with the API v2 Java SDK here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-java/tree/master/examples/android" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-java/tree/master/examples/android&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Specifically, the process is initiated here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/java/com/dropbox/core/examples/android/UserActivity.java#L36" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/java/com/dropbox/core/examples/android/UserActivity.java#L36&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And completed here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/java/com/dropbox/core/examples/android/DropboxActivity.java#L22" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/java/com/dropbox/core/examples/android/DropboxActivity.java#L22&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One difference between API v1 and API v2 is that API v2 uses OAuth 2 exclusively, where the app secret is not necessary for client-side apps, such as on Android. Only the app key is needed to start the OAuth app authorization flow and get an access token for the current user.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jul 2017 15:42:16 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/231908#M12651</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-07-12T15:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/232949#M12708</link>
      <description>&lt;P&gt;Im not sure if I´m doing this OK, but this is what I do and application crushes:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE style="background-color: #2b2b2b; color: #a9b7c6; font-family: 'Courier New'; font-size: 9,0pt;"&gt;&lt;SPAN style="background-color: #344134;"&gt;Auth&lt;/SPAN&gt;.&lt;SPAN style="font-style: italic;"&gt;startOAuth2Authentication&lt;/SPAN&gt;(&lt;SPAN style="color: #cc7832;"&gt;this, this&lt;/SPAN&gt;.&lt;SPAN style="color: #9876aa; font-style: italic;"&gt;RASVIET_APP_KEY_V2&lt;/SPAN&gt;)&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;String accessToken = &lt;SPAN style="background-color: #344134;"&gt;Auth&lt;/SPAN&gt;.&lt;SPAN style="font-style: italic;"&gt;getOAuth2Token&lt;/SPAN&gt;()&lt;SPAN style="color: #cc7832;"&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this is an activitie that &lt;/P&gt;
&lt;PRE style="background-color: #2b2b2b; color: #a9b7c6; font-family: 'Courier New'; font-size: 9,0pt;"&gt;&lt;SPAN style="color: #cc7832; background-color: #344134;"&gt;extends&lt;/SPAN&gt; PreferenceActivity&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;and rasviet_app_key_v2 is my key for the app&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2017 10:45:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/232949#M12708</guid>
      <dc:creator>alca</dc:creator>
      <dc:date>2017-07-19T10:45:39Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/233014#M12716</link>
      <description>Are you calling startOAuth2Authentication and getOAuth2Token together like that? You should use just startOAuth2Authentication to initiate the app authorization flow. You should then later call getOAuth2Token to complete the app authorization flow in onResume. (Please refer to the samples linked in my previous post.)&lt;BR /&gt;&lt;BR /&gt;Otherwise, please share the full error/output you're getting.</description>
      <pubDate>Wed, 19 Jul 2017 16:18:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/233014#M12716</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-07-19T16:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/234929#M12870</link>
      <description>&lt;P&gt;I am using 3.0.3 dropbox core sdk and &lt;SPAN class="pl-smi"&gt;it doesnt find v7 in android.support.v7.app.AppCompatActivity&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2017 15:58:43 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/234929#M12870</guid>
      <dc:creator>alca</dc:creator>
      <dc:date>2017-08-01T15:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/234957#M12872</link>
      <description>Can you share the steps and code to reproduce the issue? Thanks in advance!</description>
      <pubDate>Tue, 01 Aug 2017 18:26:58 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/234957#M12872</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-08-01T18:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/235055#M12882</link>
      <description>&lt;P&gt;In build.grade file I add this:&lt;/P&gt;
&lt;PRE style="background-color: #2b2b2b; color: #a9b7c6; font-family: 'Courier New'; font-size: 9,0pt;"&gt;&lt;SPAN style="background-color: #344134;"&gt;dependencies&lt;/SPAN&gt; {&lt;BR /&gt;&lt;BR /&gt;    compile files(&lt;SPAN style="color: #6a8759;"&gt;'libs/dropbox-core-sdk-3.0.3.jar'&lt;/SPAN&gt;)&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;and add the jar with that name under the libs folder, then I create a new class just as the example with this code:&lt;/P&gt;
&lt;PRE style="background-color: #2b2b2b; color: #a9b7c6; font-family: 'Courier New'; font-size: 9,0pt;"&gt;&lt;SPAN style="color: #cc7832;"&gt;package &lt;/SPAN&gt;com.rasviet.mobility.sincro&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;android.content.SharedPreferences&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;android.support.v7.app.AppCompatActivity&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;import &lt;/SPAN&gt;com.dropbox.core.android.Auth&lt;SPAN style="color: #cc7832;"&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt;/**&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt; * Created by Jritxal on 01/08/2017.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt; */&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #629755; font-style: italic;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cc7832;"&gt;public class &lt;/SPAN&gt;DropboxActivity &lt;SPAN style="color: #cc7832;"&gt;extends &lt;/SPAN&gt;AppCompatActivity {&lt;BR /&gt;}&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;and it says it cannont resolve v7 that apears in red and so does AppCompatActivity ofc.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Aug 2017 08:13:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/235055#M12882</guid>
      <dc:creator>alca</dc:creator>
      <dc:date>2017-08-02T08:13:11Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/235137#M12891</link>
      <description>It sounds like you're having trouble importing the Android support library, as opposed to Dropbox itself. I can't offer much help with that, but there's a post about it here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://stackoverflow.com/questions/30803405/cannot-resolve-symbol-appcompatactivity-support-v7-libraries-arent-recognized" target="_blank"&gt;https://stackoverflow.com/questions/30803405/cannot-resolve-symbol-appcompatactivity-support-v7-libraries-arent-recognized&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;By the way, it looks like you're loading the Dropbox library from the jar file, but since you're using gradle anyway, we recommend just using the setup as documented here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-java#setup" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-java#setup&lt;/A&gt;</description>
      <pubDate>Wed, 02 Aug 2017 15:46:36 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/235137#M12891</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-08-02T15:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/243525#M13586</link>
      <description>&lt;P&gt;Hello, finally I made it work!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My prob now is that I suppose I need the&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;DbxClientV2&lt;/SPAN&gt; &lt;SPAN&gt;client&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;variable to keep making calls to the api, I have declared it as public static on my main class (SyncActivity) and do this on the DropboxConnection class:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;protected void &lt;/SPAN&gt;&lt;SPAN&gt;loadData&lt;/SPAN&gt;() {&lt;BR /&gt;    &lt;SPAN&gt;new &lt;/SPAN&gt;GetCurrentAccountTask(DropboxClientFactory.&lt;SPAN&gt;getClient&lt;/SPAN&gt;()&lt;SPAN&gt;, new &lt;/SPAN&gt;GetCurrentAccountTask.Callback() {&lt;BR /&gt;        &lt;SPAN&gt;@Override&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;public void &lt;/SPAN&gt;&lt;SPAN&gt;onComplete&lt;/SPAN&gt;(FullAccount result) {&lt;BR /&gt;            SyncActivity.&lt;SPAN&gt;client &lt;/SPAN&gt;= DropboxClientFactory.&lt;SPAN&gt;getClient&lt;/SPAN&gt;()&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;            finish()&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;        }&lt;BR /&gt;&lt;BR /&gt;        &lt;SPAN&gt;@Override&lt;BR /&gt;&lt;/SPAN&gt;        &lt;SPAN&gt;public void &lt;/SPAN&gt;&lt;SPAN&gt;onError&lt;/SPAN&gt;(Exception e) {&lt;BR /&gt;            Toast.&lt;SPAN&gt;makeText&lt;/SPAN&gt;(getApplicationContext()&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Failed to get account details."&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                    Toast.&lt;SPAN&gt;LENGTH_LONG&lt;/SPAN&gt;).show()&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;        }&lt;BR /&gt;    }).execute()&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;but I´m trying to use it on the onResume method of SyncActivity class to just get email addres of the user like this:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;try&lt;/SPAN&gt; {&lt;BR /&gt;    &lt;SPAN&gt;if &lt;/SPAN&gt;(&lt;SPAN&gt;client &lt;/SPAN&gt;!= &lt;SPAN&gt;null&lt;/SPAN&gt;) {&lt;BR /&gt;        FullAccount account = &lt;SPAN&gt;client.users().getCurrentAccount&lt;/SPAN&gt;()&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;        Toast.&lt;SPAN&gt;makeText&lt;/SPAN&gt;(SyncActivity.&lt;SPAN&gt;this, &lt;/SPAN&gt;&lt;SPAN&gt;"cliente: " &lt;/SPAN&gt;+ account.getEmail()+ &lt;SPAN&gt;" acc: "&lt;/SPAN&gt;+account.toString()&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;                Toast.&lt;SPAN&gt;LENGTH_LONG&lt;/SPAN&gt;).show()&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;    }&lt;BR /&gt;}&lt;BR /&gt;&lt;SPAN&gt;catch&lt;/SPAN&gt;(Exception e)&lt;BR /&gt;{&lt;BR /&gt;    Toast.&lt;SPAN&gt;makeText&lt;/SPAN&gt;(SyncActivity.&lt;SPAN&gt;this, &lt;/SPAN&gt;&lt;SPAN&gt;"Excepcion: "&lt;/SPAN&gt;+e.getMessage()&lt;SPAN&gt;,&lt;BR /&gt;&lt;/SPAN&gt;            Toast.&lt;SPAN&gt;LENGTH_LONG&lt;/SPAN&gt;).show()&lt;SPAN&gt;;&lt;BR /&gt;&lt;/SPAN&gt;}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;and Im getting an exception with message: "null"&lt;/P&gt;</description>
      <pubDate>Tue, 26 Sep 2017 11:11:04 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/243525#M13586</guid>
      <dc:creator>jritxalç</dc:creator>
      <dc:date>2017-09-26T11:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/243623#M13609</link>
      <description>Can you share the full exception/stack trace?</description>
      <pubDate>Tue, 26 Sep 2017 18:17:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/243623#M13609</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-09-26T18:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/258679#M15005</link>
      <description>&lt;P&gt;It works properly and connects to the client dropbox account, but it never disconnects, are there any examples on how to disconnect to use another account? The only way you can do that now is reinstalling the app&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 10:10:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/258679#M15005</guid>
      <dc:creator>alca</dc:creator>
      <dc:date>2018-01-03T10:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: Android authentication</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/258748#M15009</link>
      <description>There are a few things you can do depending on exactly what kind of "disconnect" functionality you're looking for. There's a discussion here that covers several different options:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-java/issues/92" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-java/issues/92&lt;/A&gt;</description>
      <pubDate>Wed, 03 Jan 2018 15:57:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-authentication/m-p/258748#M15009</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-01-03T15:57:39Z</dc:date>
    </item>
  </channel>
</rss>

