<?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 SDK auth access token malformed when Access Token use in Dropbox JS SDK in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317370#M18820</link>
    <description>&lt;P&gt;Yes, I have checked both side and both side token received same. Here is one token which I retrieved and revoked it. There is no extra whitespace before or after the token string.&lt;/P&gt;&lt;PRE&gt;XMtgp6WiHTAAAAAAAAAC4XhwiE-frZfooOu0Hxu5EmTfGUU38c6KakU0uqQDM77t&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sample.png" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/7946i97A366BB95546485/image-size/large?v=v2&amp;amp;px=999" role="button" title="sample.png" alt="sample.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I can not figure out what's the problem &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@B0F70D28791EB05FA3EA0C3BDDF08EE3/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Dec 2018 15:29:19 GMT</pubDate>
    <dc:creator>harunctgbd</dc:creator>
    <dc:date>2018-12-12T15:29:19Z</dc:date>
    <item>
      <title>Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/316916#M18794</link>
      <description>&lt;P&gt;Recently I have included Dropbox in my&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;ionic 1&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;android application through Dropbox JavaScript SDK for user data backup. I have used&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;inAppBrowser&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;for the authentication process. Everything is working perfectly and 100+ user already using this feature.&lt;/P&gt;&lt;P&gt;After 100+ user I have applied for production request but it's declined reason for&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;OAuth app authorization flow inside a web view, instead of the system browser.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For handling this situation I have made an ionic plugin for native authentication flow of Dropbox android SDK. I have developed &amp;amp; configure my plugin using Dropbox android SDK (&lt;A href="https://www.dropbox.com/developers-v1/core/sdks/android" target="_blank" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers-v1/core/sdks/android&lt;/A&gt;) for getting access token. This part also working fine and I am getting access token successfully.&lt;/P&gt;&lt;P&gt;But problem is, when I am sending my Access Token to JS SDK (&lt;A href="https://github.com/dropbox/dropbox-sdk-js" target="_blank" rel="nofollow noreferrer"&gt;https://github.com/dropbox/dropbox-sdk-js&lt;/A&gt;) it's returning&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;400 response The given OAuth 2 access token is malformed&lt;/P&gt;&lt;PRE&gt;var dbx = new Dropbox({ accessToken: ACCESS_TOKEN });
dbx.usersGetCurrentAccount()
.then(function(response) {    
	console.log(response);
}).catch(function(error) {    
	console.error(error);
});&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;SPAN&gt;In this situation what can I do? I can not figure out the solution&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:08:48 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/316916#M18794</guid>
      <dc:creator>harunctgbd</dc:creator>
      <dc:date>2019-05-29T09:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/316960#M18807</link>
      <description>&lt;P&gt;[Cross-linking for reference:&amp;nbsp;&lt;A href="https://stackoverflow.com/questions/53699757/dropbox-android-sdk-auth-access-token-malformed-when-use-in-dropbox-js-sdk" target="_blank"&gt;https://stackoverflow.com/questions/53699757/dropbox-android-sdk-auth-access-token-malformed-when-use-in-dropbox-js-sdk&lt;/A&gt; ]&lt;/P&gt;
&lt;P&gt;Regardless of where/how you got&amp;nbsp;a Dropbox API OAuth 2 access token, you should be able to use it to make&amp;nbsp;Dropbox API v2 calls from any platform. For instance,&amp;nbsp;a Dropbox API OAuth 2 access token retrieved via a Java/Android SDK can also be copied over and used via JavaScript.&lt;/P&gt;
&lt;P&gt;The error message is indicating that the supplied access token is "malformed", i.e., it isn't in the expected format, so it sounds like perhaps you're accidentally modifying it when copying it over.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, I&amp;nbsp;recommend inspecting the access token string itself to see how it may be malformed. For instance, has it been accidentally truncated, or perhaps it has unexpected leading or trailing whitespace, etc.&lt;/P&gt;
&lt;P&gt;For comparison, here's a sample OAuth 2 access token:&lt;/P&gt;
&lt;PRE&gt;Zu9U1XOZl8QAAAAAAAOIULgRVgYHAjrusYASKTBRbaRpQXKJWpH9C4BwyJ9fpd6M&lt;/PRE&gt;
&lt;P&gt;Note that it is one long string, using letters and numbers, with no whitespace.&lt;/P&gt;
&lt;P&gt;(I retrieved this access token and revoked it, just for reference here. Please don't post your own access token.)&lt;/P&gt;
&lt;P&gt;By the way, note that &lt;A href="https://www.dropbox.com/developers-v1/core/sdks/android" target="_self"&gt;the SDK&lt;/A&gt; you linked to is for the retired API v1, and so is no longer officially supported. The OAuth app authorization flow implementation in that may still work, but we&amp;nbsp;recommend using &lt;A href="https://github.com/dropbox/dropbox-sdk-java" target="_self"&gt;the current official API v2 Java SDK&lt;/A&gt; on Android instead.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Dec 2018 19:06:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/316960#M18807</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-12-10T19:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317157#M18815</link>
      <description>&lt;P&gt;Thanks for your response. I have updated &lt;A href="https://github.com/dropbox/dropbox-sdk-java/blob/master/examples/android/src/main/java/com/dropbox/core/examples/android/UserActivity.java" target="_self"&gt;Official API v2 SDK for android&lt;/A&gt; but still, I am getting&amp;nbsp;access token which says&amp;nbsp;&lt;SPAN&gt;malformed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have tested with android native Logcat for ensuring that before passing the token&amp;nbsp;to my js client side it is modifying or not. I found both are the same token that&amp;nbsp; I am getting after authentication.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;package cordova.plugin.dbxconnect;

import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaPlugin;
import org.json.JSONArray;
import org.json.JSONException;

import android.util.Log;
import android.content.Context;

import com.dropbox.core.android.Auth;
import com.dropbox.core.v2.users.FullAccount;
import com.dropbox.core.android.AuthActivity;

public class DbxConnect extends CordovaPlugin {
    final static private String APP_KEY = "myAppKey";

    private static CallbackContext myCallbackContext;

    @Override
    public boolean execute(String action, JSONArray args, CallbackContext callbackContext) throws JSONException {

        if (action.equals("dbxAuth")) {
            this.dbxAuth(callbackContext);
            DbxConnect.myCallbackContext = callbackContext;
            return true;
        }
        return false;
    }

    private void dbxAuth(CallbackContext callbackContext) {
        Context context = this.cordova.getActivity().getApplicationContext();
        Auth.startOAuth2Authentication(context, APP_KEY);
    }

    @Override
    public void onResume(boolean multitasking) {
        super.onResume(multitasking);
        try {
            String accessToken = Auth.getOAuth2Token();
            Log.d("TOKEN",accessToken);
            DbxConnect.myCallbackContext.success(accessToken);
        } catch (IllegalStateException e) {
            DbxConnect.myCallbackContext.error("Drobox login fail");
        }
    }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 16:57:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317157#M18815</guid>
      <dc:creator>harunctgbd</dc:creator>
      <dc:date>2018-12-11T16:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317204#M18816</link>
      <description>&lt;P&gt;You mentioned you checked in LogCat on the Android side, but did you also add some logging to check on the JavaScript side? I&amp;nbsp;recommend doing so if you haven't.&lt;/P&gt;
&lt;P&gt;And then when you do inspect it in JavaScript, does it have the same format as the sample I shared in my previous post?&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 20:03:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317204#M18816</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-12-11T20:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317370#M18820</link>
      <description>&lt;P&gt;Yes, I have checked both side and both side token received same. Here is one token which I retrieved and revoked it. There is no extra whitespace before or after the token string.&lt;/P&gt;&lt;PRE&gt;XMtgp6WiHTAAAAAAAAAC4XhwiE-frZfooOu0Hxu5EmTfGUU38c6KakU0uqQDM77t&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sample.png" style="width: 999px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/7946i97A366BB95546485/image-size/large?v=v2&amp;amp;px=999" role="button" title="sample.png" alt="sample.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I can not figure out what's the problem &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@B0F70D28791EB05FA3EA0C3BDDF08EE3/emoticons/1f61e.png" alt=":disappointed_face:" title=":disappointed_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 15:29:19 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317370#M18820</guid>
      <dc:creator>harunctgbd</dc:creator>
      <dc:date>2018-12-12T15:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317397#M18827</link>
      <description>&lt;P&gt;Thanks. That does look valid. I also just tried it in the JavaScript SDK using your code and it worked as expected for me. (It failed with a 401 Unauthorized; the malformed check occurs first, so it would&amp;nbsp;fail with the malformed error&amp;nbsp;even if the token is revoked.)&lt;/P&gt;
&lt;P&gt;Just to check, can you make sure you're not actually saving the token with that "Token:" prefix? I imagine that's just how you're printing it, but it would be good to make sure.&lt;/P&gt;
&lt;P&gt;Otherwise, please share the rest of the relevant code to reproduce this so we can reproduce it here to investigate it.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 18:17:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317397#M18827</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-12-12T18:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317547#M18831</link>
      <description>&lt;P&gt;Thanks for your quick response.&amp;nbsp;I used only token string. The leading 'Token:' that I used in my console log for debugging.&amp;nbsp;I have added my plugin in a GitHub repository for your investigation.&lt;/P&gt;&lt;P&gt;I am using it in my &lt;STRONG&gt;ionic 1&lt;/STRONG&gt; application. You can investigate with this code Cordova, ionic other versions also.&lt;/P&gt;&lt;P&gt;1. Install plugin&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;cordova plugin add https://github.com/haruncpi/cordova-native-dbxconnect.git&lt;/PRE&gt;&lt;P&gt;2. Add activity in &lt;STRONG&gt;platforms/android/AndroidManifest.xml&lt;/STRONG&gt; file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;activity android:configChanges="orientation|keyboard" android:launchMode="singleTask" android:name="com.dropbox.core.android.AuthActivity"&amp;gt;
      &amp;lt;intent-filter&amp;gt;
          &amp;lt;data android:scheme="db-here_your_app_key" /&amp;gt;
          &amp;lt;action android:name="android.intent.action.VIEW" /&amp;gt;
          &amp;lt;category android:name="android.intent.category.BROWSABLE" /&amp;gt;
          &amp;lt;category android:name="android.intent.category.DEFAULT" /&amp;gt;
      &amp;lt;/intent-filter&amp;gt;
&amp;lt;/activity&amp;gt;&lt;/PRE&gt;&lt;P&gt;[N.B: Must change &lt;STRONG&gt;here_your_app_key&lt;/STRONG&gt; with your app key]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Use in your js side&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;cordova.plugins.DbxConnect.dbxAuth(here_your_app_key, 
  function (token) {
      console.log(token)
  }, function (error) {
      console.log(error)
  })&lt;/PRE&gt;&lt;P&gt;[N.B: Must change &lt;STRONG&gt;here_your_app_key&lt;/STRONG&gt; with your app key]&lt;/P&gt;&lt;P&gt;I hope I'll get a solution asap. My app users getting a bad experience&amp;nbsp;with this issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 04:50:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317547#M18831</guid>
      <dc:creator>harunctgbd</dc:creator>
      <dc:date>2018-12-13T04:50:30Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317691#M18836</link>
      <description>&lt;P&gt;Nothing in the code you've provided so far looks problematic.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately Cordova isn't officially supported by Dropbox though, so I'm afraid I don't have experience using it. Can you share a complete sample&amp;nbsp;including all of the code necessary&amp;nbsp;so we can reproduce this?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Dec 2018 20:09:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317691#M18836</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-12-13T20:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317792#M18837</link>
      <description>&lt;P&gt;Actually, it does not matter of Cordova. The total auth process is happening android side with Official Dropbox SDK. After successful authentication, the Cordova&amp;nbsp;callback just passing the access token noting else and there is no confusion Cordova is modifying the access token. I have confirmed that the access token before passing and successful authentication both are same.&lt;/P&gt;&lt;P&gt;I have provided sufficient&amp;nbsp;code and my plugin to investigation&amp;nbsp;if you are familiar&amp;nbsp;with Cordova or ionic.&lt;/P&gt;&lt;P&gt;By the way, If I provide a total a sample project with integrating my plugin you need to build, debug to investigate the problem. Could&amp;nbsp;you do that if you are not familiar with the Cordova&amp;nbsp;or ionic development process?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 03:44:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317792#M18837</guid>
      <dc:creator>harunctgbd</dc:creator>
      <dc:date>2018-12-14T03:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317830#M18838</link>
      <description>&lt;P&gt;&lt;STRONG&gt;I have added a total sample project&lt;/STRONG&gt; &lt;A href="https://github.com/haruncpi/testdropbox" target="_self"&gt;https://github.com/haruncpi/testdropbox&lt;/A&gt;&lt;/P&gt;&lt;P&gt;- clone the repo.&lt;/P&gt;&lt;P&gt;You need to change two files with the app key&lt;/P&gt;&lt;P&gt;1. www/js/controllers.js&lt;/P&gt;&lt;P&gt;2. platforms/android/AndroidManifest.xml&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For run the project you have required&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1. Node v6.14*&lt;/P&gt;&lt;P&gt;2. Cordova 6.0&amp;nbsp; install it by&amp;nbsp;&lt;STRONG&gt;npm install -g cordova@6.0.0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;3. ionic 1.7 install it by&amp;nbsp;&lt;STRONG&gt;npm install -g ionic@1.7.15&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For running app run the command&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ionic run&amp;nbsp; &amp;nbsp;[it will install the app to connected device or emulator]&lt;/P&gt;&lt;P&gt;For debugging and show the log in the console run the command below&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ionic run -l -c -s&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have done all stuff what you required. Hopefully,&amp;nbsp;I'll get a solution. Thanks for your cooperations.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 12:36:01 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317830#M18838</guid>
      <dc:creator>harunctgbd</dc:creator>
      <dc:date>2018-12-14T12:36:01Z</dc:date>
    </item>
    <item>
      <title>Re: Android SDK auth access token malformed when Access Token use in Dropbox JS SDK</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317923#M18841</link>
      <description>&lt;P&gt;Thanks! I'll work on getting that environment working to try to reproduce this. (I can't make any promises though, as we don't officially support Cordova/Ionic.)&lt;/P&gt;
&lt;P&gt;I'm looking through the code though, and I don't see where you actually construct the&amp;nbsp;Dropbox JavaScript client object and call&amp;nbsp;usersGetCurrentAccount, per your original comment. Can you add that? Given the rest of the investigation here, it certainly seems possible that that portion will be relevant (e.g., how you're transferring the token over, when/where you're loading and using the JavaScript library, etc.).&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 20:38:10 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Android-SDK-auth-access-token-malformed-when-Access-Token-use-in/m-p/317923#M18841</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-12-14T20:38:10Z</dc:date>
    </item>
  </channel>
</rss>

