<?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: How to relink a user (revoke) using the javascript api. in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259501#M15093</link>
    <description>It sounds like you're referring to the behavior of the Dropbox OAuth app authorization flow where, if the user has already authorized your app, then they may be automatically redirected back to your app instead of having to provide explicit authorization again. If the user fully revokes the app's authorization, e.g., via &lt;A href="https://www.dropbox.com/account/security" target="_blank"&gt;https://www.dropbox.com/account/security&lt;/A&gt; , though, then they will not be automatically redirected.&lt;BR /&gt;&lt;BR /&gt;Apps can also control this behavior using the 'force_reapprove' parameter on /authorize:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This isn't currently implemented in the official JavaScript SDK, but I'll be sure to pass this along as a feature request.</description>
    <pubDate>Mon, 08 Jan 2018 19:39:35 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2018-01-08T19:39:35Z</dc:date>
    <item>
      <title>How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258708#M15006</link>
      <description>&lt;P&gt;Can anyone show me an example how to use the javascript api to revoke and then&amp;nbsp;let the user re-link to Dropbox?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:16:24 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258708#M15006</guid>
      <dc:creator>Mixware</dc:creator>
      <dc:date>2019-05-29T09:16:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258749#M15010</link>
      <description>To revoke an access token using the JavaScript SDK, you should use authTokenRevoke:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#authTokenRevoke__anchor" target="_blank"&gt;https://dropbox.github.io/dropbox-sdk-js/Dropbox.html#authTokenRevoke__anchor&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Then, you can just throw away the old access token and start the app authorization flow over if/when necessary, e.g.,:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-js/blob/master/examples/javascript/auth/index.html#L88" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-js/blob/master/examples/javascript/auth/index.html#L88&lt;/A&gt;</description>
      <pubDate>Wed, 03 Jan 2018 16:00:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258749#M15010</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-01-03T16:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258799#M15015</link>
      <description>&lt;P&gt;Hi Greg.&lt;BR /&gt;&lt;BR /&gt;I will be very pleased if you can provide a working example of the revoke process.&lt;BR /&gt;&lt;BR /&gt;The authenticate works fine using this code:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; var DROPBOX_APP_KEY = 'mydropboxappkey';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dbx = new Dropbox({clientId:DROPBOX_APP_KEY});&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbx.authenticateWithCordova(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function(accessToken)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; //user is logged in&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but I can't get the revoke process work.&lt;BR /&gt;Maybe I just don't understand the basic use of the api.&lt;BR /&gt;I think there is a lack of real life code snippets.&lt;BR /&gt;&lt;BR /&gt;I have tried something like&lt;BR /&gt;&lt;BR /&gt;dbx.authTokenRevoke(arg). &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I don't understand what "arg" should be.&lt;BR /&gt;Should it be a function?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers Erik&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 19:51:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258799#M15015</guid>
      <dc:creator>Mixware</dc:creator>
      <dc:date>2018-01-03T19:51:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258802#M15016</link>
      <description>&lt;P&gt;Here's an example of how this would work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;var dbx = new Dropbox({ accessToken: 'ACCESS_TOKEN_HERE' });

dbx.authTokenRevoke()
    .then(function(response) {
        // the access token for `dbx` has been revoked
        console.log("got authTokenRevoke response:");
        console.log(response);

        // this should fail now:
        dbx.usersGetCurrentAccount()
          .then(function(response) {
            console.log("got usersGetCurrentAccount response:");
            console.log(response);
          })
          .catch(function(error) {
            console.log("got usersGetCurrentAccount error:");
            console.log(error);
          });

    })
    .catch(function(error) {
      console.log("got authTokenRevoke error:");
      console.log(error);
    });&lt;/PRE&gt;</description>
      <pubDate>Wed, 03 Jan 2018 20:08:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258802#M15016</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-01-03T20:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258805#M15018</link>
      <description>&lt;P&gt;&amp;nbsp;&amp;nbsp; I think this works, right!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; var DROPBOX_APP_KEY = 'mydropboxappkey';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dbx = new Dropbox({clientId:DROPBOX_APP_KEY});&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbx.authTokenRevoke(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function()&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But then I&amp;nbsp;am still logged in until I restart my app.&lt;BR /&gt;Anything I can do to re-link without restarting my app?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jan 2018 20:16:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258805#M15018</guid>
      <dc:creator>Mixware</dc:creator>
      <dc:date>2018-01-03T20:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258807#M15019</link>
      <description>Okay. I did not see your latest reply befor I posted my last one.&lt;BR /&gt;I will study that!</description>
      <pubDate>Wed, 03 Jan 2018 20:18:59 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/258807#M15019</guid>
      <dc:creator>Mixware</dc:creator>
      <dc:date>2018-01-03T20:18:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259229#M15068</link>
      <description>&lt;P&gt;Ok. I can get the revoke working by using your code. But I have to restart my app to get the Dropbox login dialog.&lt;BR /&gt;If I run &lt;STRONG&gt;authenticateWithCordova&lt;/STRONG&gt; right after revoke, I'm just logged in again without the need of writing my username and password.&lt;BR /&gt;Anything to do?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Jan 2018 10:26:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259229#M15068</guid>
      <dc:creator>Mixware</dc:creator>
      <dc:date>2018-01-06T10:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259473#M15084</link>
      <description>It sounds like you're referring to still being signed in to the Dropbox web site (&lt;A href="http://www.dropbox.com" target="_blank"&gt;www.dropbox.com&lt;/A&gt;) itself in the browser. This is unrelated to the API/access token.&lt;BR /&gt;&lt;BR /&gt;To sign out of the web site, the user can do so themselves via the "Sign out" link, or the app can direct them to &lt;A href="https://www.dropbox.com/logout" target="_blank"&gt;https://www.dropbox.com/logout&lt;/A&gt; .</description>
      <pubDate>Mon, 08 Jan 2018 16:53:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259473#M15084</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-01-08T16:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259498#M15091</link>
      <description>&lt;P&gt;Many thanks for your answers and your efforts to help me.&lt;BR /&gt;&lt;BR /&gt;But, it is not about the Dropbox website.&lt;BR /&gt;&lt;BR /&gt;I have made a Cordova app using javascript.&lt;BR /&gt;When the app starts first time, the user is&amp;nbsp;guided to log in to a Dropbox account.&lt;BR /&gt;To do that, I use&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; var DROPBOX_APP_KEY = 'mydropboxappkey';&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; var dbx = new Dropbox({clientId:DROPBOX_APP_KEY});&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; dbx.authenticateWithCordova(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; function(accessToken)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; //user is logged in&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;/P&gt;
&lt;P&gt;The Dropbox login dialog is displayed in the app and the users can write the username and password&amp;nbsp;and get access to their Dropbox .&lt;BR /&gt;Works fine!&lt;BR /&gt;&lt;BR /&gt;My problem is that I would like to give the users &lt;SPAN&gt;opportunity&lt;/SPAN&gt; to logout and login to another Dropbox account.&lt;BR /&gt;I can run the "dbx.revoke", and it works. The user have no longer access to the Dropbox.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now I run the "&lt;SPAN&gt;dbx.authenticateWithCordova&lt;/SPAN&gt;" again. &lt;BR /&gt;&lt;STRONG&gt;This time the Dropbox login dialog is not displayed.&lt;/STRONG&gt;&lt;BR /&gt;But the user is logged automatically to the same account,&amp;nbsp;and are not able to write another username and password.&lt;BR /&gt;The only way I can get the login dialog is to restart the app.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I hope this is clear what the problem is.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jan 2018 19:24:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259498#M15091</guid>
      <dc:creator>Mixware</dc:creator>
      <dc:date>2018-01-08T19:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259501#M15093</link>
      <description>It sounds like you're referring to the behavior of the Dropbox OAuth app authorization flow where, if the user has already authorized your app, then they may be automatically redirected back to your app instead of having to provide explicit authorization again. If the user fully revokes the app's authorization, e.g., via &lt;A href="https://www.dropbox.com/account/security" target="_blank"&gt;https://www.dropbox.com/account/security&lt;/A&gt; , though, then they will not be automatically redirected.&lt;BR /&gt;&lt;BR /&gt;Apps can also control this behavior using the 'force_reapprove' parameter on /authorize:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This isn't currently implemented in the official JavaScript SDK, but I'll be sure to pass this along as a feature request.</description>
      <pubDate>Mon, 08 Jan 2018 19:39:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/259501#M15093</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-01-08T19:39:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261075#M15222</link>
      <description>&lt;P&gt;So&amp;nbsp;I tried sending the user to the logout page, but them logging in with a different profile doesn't seem to change which user is logged in with my javascript app.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there no way to change the&amp;nbsp;output of dbx.getAuthenticationUrl to give a web address that'll automatically log the user out?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2018 09:05:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261075#M15222</guid>
      <dc:creator>anthonyhaffey</dc:creator>
      <dc:date>2018-01-18T09:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261213#M15233</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/378878"&gt;@anthonyhaffey&lt;/a&gt;&amp;nbsp;The user's web session, that is, the account signed in to the&amp;nbsp;Dropbox web site, is separate from the API client's access, that is, the account identified by the access token your app has.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're trying to switch the account logged in to your app, make sure you throw away the old access token, as that will always be for the old account.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For reference though apps can&amp;nbsp;technically sign users out of the Dropbox web site during the app authorization flow. Similar to the&amp;nbsp;'force_reapprove' parameter on /authorize, there is a 'force_reauthentication' parameter:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This also isn't currently implemented in the official JavaScript SDK, but I'll be sure to pass this along as a feature request. We generally don't encourage its use though, as it's more disruptive to the user.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2018 16:34:39 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261213#M15233</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-01-18T16:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261514#M15248</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp;Thanks for your response. I've tried throwing away the old token, but I've found that my method for asking them to reauthenticate automatically logs them onto the same dropbox account:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;dbx.authTokenRevoke();
var dbx = new Dropbox({ clientId: CLIENT_ID });
var authUrl = dbx.getAuthenticationUrl('https://www.open-collector.org/alpha/Admin/Tools/Simulator_SQL/');
document.getElementById('authlink').href = authUrl;
$("#authlink")[0].click();
&lt;/PRE&gt;
&lt;P&gt;Is there something I need to change or add to this code to prevent them automatically being authenticated onto the same dropbox account as they were before I revoked the authorisation token?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jan 2018 08:15:28 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261514#M15248</guid>
      <dc:creator>anthonyhaffey</dc:creator>
      <dc:date>2018-01-20T08:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261813#M15269</link>
      <description>Depending on your use case, you may want to add the `force_reapprove` or `force_reauthentication` parameters. Please refer to my earlier posts on this thread for more information about those.&lt;BR /&gt;&lt;BR /&gt;Since those aren't implemented in the JavaScript SDK, you'd need to parse and modify the `authUrl` value in this code to add one of those parameters.</description>
      <pubDate>Mon, 22 Jan 2018 16:17:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261813#M15269</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2018-01-22T16:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to relink a user (revoke) using the javascript api.</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261823#M15274</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt;&amp;nbsp;Thanks! All I had to do was add "&amp;amp;force_reauthentication=true" to the end of the authUrl generated by the dbx.getAuthenticationUrl function.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jan 2018 16:44:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-relink-a-user-revoke-using-the-javascript-api/m-p/261823#M15274</guid>
      <dc:creator>anthonyhaffey</dc:creator>
      <dc:date>2018-01-22T16:44:55Z</dc:date>
    </item>
  </channel>
</rss>

