<?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 fix the short-lived access token issue? in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/588283#M27382</link>
    <description>&lt;P&gt;After the user authorizes the app, the resulting response URI will contain the information needed for completing the process on the query portion of the URI. You need to pass that response URI into &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_DropboxOAuth2Helper_ProcessCodeFlowAsync_1.htm" target="_self"&gt;ProcessCodeFlowAsync&lt;/A&gt;, as the 'responseUri' parameter, to complete the flow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This error message is indicating that the responseUri value you are passing in does not contain that information on the query portion however. In this case, that appears to be because you're passing back in the original redirect URI constant ('new Uri(Constants.DropboxRedirectUri)'), not the actual result of the authorization. You should change that to the response URI (the "&lt;A href="https://localhost/authorize?code=xxx-Returned-Code-xxx&amp;quot;" target="_blank"&gt;https://localhost/authorize?code=xxx-Returned-Code-xxx"&lt;/A&gt; you mentioned.) You can find &lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/b5dff871d353c46dcdf61f0319a10be4ed0b8c0c/dropbox-sdk-dotnet/Examples/OauthBasic/Program.cs#L215" target="_self"&gt;an example of that here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, I notice from your code that you're processing this in a web view. The OAuth app authorization flow should be processed in the user's system browser, not a web view. See &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize" target="_self"&gt;here for more information&lt;/A&gt;.&lt;/P&gt;</description>
    <pubDate>Mon, 04 Apr 2022 16:29:05 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2022-04-04T16:29:05Z</dc:date>
    <item>
      <title>How to fix the short-lived access token issue?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/587796#M27356</link>
      <description>&lt;P&gt;I have a Desktop/Mobile Xamarin application that reads and writes to the Apps folder in a users Dropbox. It has been working fine for a long time but now that Dropbox has moved to short-lived access tokens my application is having issues. It used to be when the application got the Dropbox token that was it unless the user uninstalled my application. I am using the Dropbox.Sdk .NET and C#.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My authentication code was like this:&lt;/P&gt;
&lt;PRE&gt;&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;oauth2State&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Guid&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;NewGuid&lt;/SPAN&gt;&lt;SPAN&gt;()&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;ToString&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"N"&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;
&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;authorizeUri&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;DropboxOAuth2Helper&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;GetAuthorizeUri&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;OAuthResponseType&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Token&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Constants&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DropboxClientId&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Uri&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Constants&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;DropboxRedirectUri&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;oauth2State&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;
&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;webView&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;WebView&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;{&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Source&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;UrlWebViewSource&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;{&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Url&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;authorizeUri&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;AbsoluteUri&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;}&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;};&lt;/SPAN&gt;
&lt;SPAN&gt;webView&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Navigating&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;+=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;WebViewOnNavigating&lt;/SPAN&gt;&lt;SPAN&gt;;&lt;/SPAN&gt;
&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;contentPage&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;ContentPage&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;{&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Content&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;webView&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;};&lt;/SPAN&gt;
&lt;SPAN&gt;await&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;Shell&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Current&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;Navigation&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;PushModalAsync&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;contentPage&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;
&lt;/PRE&gt;
&lt;P&gt;So how do I fix this so that it works with Dropbox's new process.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do I need to start using both an AccessToken and a RefreshToken?&lt;/P&gt;
&lt;P&gt;How do I change the above code to get both tokens?&lt;/P&gt;
&lt;P&gt;And then how do I use those tokens so that the user does not need to keep logging into Dropbox from my application?&lt;/P&gt;
&lt;P&gt;Has anyone got a .NET C# sample of how to read and write a file to a users Apps folder for an application since all this has changed?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Orgbrat&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 12:58:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/587796#M27356</guid>
      <dc:creator>Orgbrat</dc:creator>
      <dc:date>2022-04-26T12:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix the short-lived access token issue?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/587819#M27357</link>
      <description>&lt;P&gt;The latest .NET SDK has a good example of using refresh tokens in the &lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/b5dff871d353c46dcdf61f0319a10be4ed0b8c0c/dropbox-sdk-dotnet/Examples/OauthBasic/Program.cs" target="_self"&gt;OauthBasic example&lt;/A&gt;.&amp;nbsp; Be sure to pass the&amp;nbsp;&lt;SPAN class="pl-en"&gt;tokenAccessType&lt;/SPAN&gt;&lt;SPAN&gt;: &lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;TokenAccessType&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN class="pl-smi"&gt;Offline parameter when constructing your url with&amp;nbsp;GetAuthorizeUri in order to get a refresh token.&amp;nbsp; &amp;nbsp;The refresh token can then be passed &lt;SPAN class="pl-en"&gt;&lt;SPAN class="pl-token" data-hydro-click="{&amp;quot;event_type&amp;quot;:&amp;quot;code_navigation.click_on_symbol&amp;quot;,&amp;quot;payload&amp;quot;:{&amp;quot;action&amp;quot;:&amp;quot;click_on_symbol&amp;quot;,&amp;quot;repository_id&amp;quot;:37572093,&amp;quot;ref&amp;quot;:&amp;quot;b5dff871d353c46dcdf61f0319a10be4ed0b8c0c&amp;quot;,&amp;quot;language&amp;quot;:&amp;quot;C#&amp;quot;,&amp;quot;backend&amp;quot;:&amp;quot;ALEPH_FUZZY&amp;quot;,&amp;quot;code_nav_context&amp;quot;:&amp;quot;BLOB_VIEW&amp;quot;,&amp;quot;retry_backend&amp;quot;:&amp;quot;&amp;quot;,&amp;quot;originating_url&amp;quot;:&amp;quot;https://github.com/dropbox/dropbox-sdk-dotnet/find-definition?q=DropboxClient&amp;amp;blob_path=dropbox-sdk-dotnet%2FExamples%2FOauthBasic%2FProgram.cs&amp;amp;ref=b5dff871d353c46dcdf61f0319a10be4ed0b8c0c&amp;amp;language=C%23&amp;amp;row=86&amp;amp;col=33&amp;amp;code_nav_context=BLOB_VIEW&amp;quot;,&amp;quot;user_id&amp;quot;:10924320}}" data-hydro-click-hmac="8b2bf7df9a7676cb070fcdbf2f5c3e8ac2a773bbdc3296c4521e65c08dc42251"&gt;DropboxClient, which is also shown in the example.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using refresh tokens should only be necessary if your application requires background access.&amp;nbsp; For typical web applications, simply prompting the user to re-authenticate is recommended. The flow will typically auto-redirect if the user is logged in and has previously authorized the app.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="pl-smi"&gt;This is described in more detail in our &lt;A href="https://developers.dropbox.com/oauth-guide" target="_self"&gt;Oauth Guide&lt;/A&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Apr 2022 23:00:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/587819#M27357</guid>
      <dc:creator>kylea</dc:creator>
      <dc:date>2022-04-01T23:00:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix the short-lived access token issue?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/587898#M27362</link>
      <description>&lt;P&gt;Thanks for the quick reply, it is very much appreciated.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am failing to authorize with the error "scope: must be at most 0 characters, got 97"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I modified the original code to be:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;string&lt;/SPAN&gt;[]&amp;nbsp;&lt;SPAN&gt;scopeList&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;string&lt;/SPAN&gt;[&lt;SPAN&gt;5&lt;/SPAN&gt;]&amp;nbsp;{&amp;nbsp;&lt;SPAN&gt;"files.metadata.write"&lt;/SPAN&gt;,&amp;nbsp;&lt;SPAN&gt;"files.metadata.read"&lt;/SPAN&gt;,&amp;nbsp;&lt;SPAN&gt;"files.content.write"&lt;/SPAN&gt;,&amp;nbsp;&lt;SPAN&gt;"files.content.read"&lt;/SPAN&gt;,&amp;nbsp;&lt;SPAN&gt;"account_info.read"&lt;/SPAN&gt;&amp;nbsp;};
 
&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;oauth2State&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;Guid&lt;SPAN&gt;.&lt;/SPAN&gt;NewGuid()&lt;SPAN&gt;.&lt;/SPAN&gt;ToString(&lt;SPAN&gt;"N"&lt;/SPAN&gt;);
&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;authorizeUri&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;DropboxOAuth2Helper&lt;SPAN&gt;.&lt;/SPAN&gt;GetAuthorizeUri(OAuthResponseType&lt;SPAN&gt;.&lt;/SPAN&gt;Code,&amp;nbsp;Constants&lt;SPAN&gt;.&lt;/SPAN&gt;DropboxClientId,&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;Uri(Constants&lt;SPAN&gt;.&lt;/SPAN&gt;DropboxRedirectUri),&amp;nbsp;state:&amp;nbsp;&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;oauth2State,&amp;nbsp;tokenAccessType:&amp;nbsp;TokenAccessType&lt;SPAN&gt;.&lt;/SPAN&gt;Offline,&amp;nbsp;scopeList:&amp;nbsp;scopeList,&amp;nbsp;includeGrantedScopes:&amp;nbsp;IncludeGrantedScopes&lt;SPAN&gt;.&lt;/SPAN&gt;None);
&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;webView&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;WebView&amp;nbsp;{&amp;nbsp;Source&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;UrlWebViewSource&amp;nbsp;{&amp;nbsp;Url&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;authorizeUri&lt;SPAN&gt;.&lt;/SPAN&gt;AbsoluteUri&amp;nbsp;}&amp;nbsp;};&lt;/PRE&gt;&lt;P&gt;Update:&lt;/P&gt;&lt;P&gt;I went into the App Console and opened the Permissions tab. The Console ask me to Migrate my requested permissions, which I did do. Went back into the app and tried to authorize again and this time I am getting the&amp;nbsp; Login page from Dropbox. Step closer maybe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now when it authorizes thru the Login page and transfers to my WebViewOnNavigating event it returns the following URL;&lt;/P&gt;&lt;P&gt;&lt;A href="https://localhost/authorize?code=xxx-Returned-Code-xxx" target="_blank"&gt;https://localhost/authorize?code=xxx-Returned-Code-xxx&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At this point I make a call to:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;result&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;=&lt;/SPAN&gt;&amp;nbsp;&lt;SPAN&gt;await&lt;/SPAN&gt;&amp;nbsp;DropboxOAuth2Helper&lt;SPAN&gt;.&lt;/SPAN&gt;ProcessCodeFlowAsync(&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;Uri(Constants&lt;SPAN&gt;.&lt;/SPAN&gt;DropboxRedirectUri),&amp;nbsp;Constants&lt;SPAN&gt;.&lt;/SPAN&gt;DropboxClientId,&amp;nbsp;Constants&lt;SPAN&gt;.&lt;/SPAN&gt;DropboxClientSecret,&amp;nbsp;&lt;SPAN&gt;new&lt;/SPAN&gt;&amp;nbsp;Uri(Constants&lt;SPAN&gt;.&lt;/SPAN&gt;DropboxRedirectUri)&lt;SPAN&gt;.&lt;/SPAN&gt;ToString(),&amp;nbsp;&lt;SPAN&gt;this&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;oauth2State);&lt;/PRE&gt;&lt;P&gt;This call crashes with the error : "The redirect uri is missing expected query arguments. (Parameter 'responseUri')"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Orgbrat&lt;/P&gt;</description>
      <pubDate>Sat, 02 Apr 2022 14:47:16 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/587898#M27362</guid>
      <dc:creator>Orgbrat</dc:creator>
      <dc:date>2022-04-02T14:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix the short-lived access token issue?</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/588283#M27382</link>
      <description>&lt;P&gt;After the user authorizes the app, the resulting response URI will contain the information needed for completing the process on the query portion of the URI. You need to pass that response URI into &lt;A href="https://dropbox.github.io/dropbox-sdk-dotnet/html/M_Dropbox_Api_DropboxOAuth2Helper_ProcessCodeFlowAsync_1.htm" target="_self"&gt;ProcessCodeFlowAsync&lt;/A&gt;, as the 'responseUri' parameter, to complete the flow.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This error message is indicating that the responseUri value you are passing in does not contain that information on the query portion however. In this case, that appears to be because you're passing back in the original redirect URI constant ('new Uri(Constants.DropboxRedirectUri)'), not the actual result of the authorization. You should change that to the response URI (the "&lt;A href="https://localhost/authorize?code=xxx-Returned-Code-xxx&amp;quot;" target="_blank"&gt;https://localhost/authorize?code=xxx-Returned-Code-xxx"&lt;/A&gt; you mentioned.) You can find &lt;A href="https://github.com/dropbox/dropbox-sdk-dotnet/blob/b5dff871d353c46dcdf61f0319a10be4ed0b8c0c/dropbox-sdk-dotnet/Examples/OauthBasic/Program.cs#L215" target="_self"&gt;an example of that here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By the way, I notice from your code that you're processing this in a web view. The OAuth app authorization flow should be processed in the user's system browser, not a web view. See &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize" target="_self"&gt;here for more information&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Apr 2022 16:29:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/How-to-fix-the-short-lived-access-token-issue/m-p/588283#M27382</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-04-04T16:29:05Z</dc:date>
    </item>
  </channel>
</rss>

