<?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: oauth2/token endpoint not returning refresh_token in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/626880#M28991</link>
    <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I'm having an issue with the 'offline' token.&amp;nbsp; I went thru the process of requesting a refresh token using the web link:&amp;nbsp; &lt;EM&gt;&lt;A href="https://www.dropbox.com/oauth2/authorize?client_id=" target="_blank"&gt;https://www.dropbox.com/oauth2/authorize?client_id=&lt;/A&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&amp;amp;token_access_type=offline&amp;amp;response_type=code&lt;/EM&gt; and received the following (expired token):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-10-04 at 10.17.50.png" style="width: 637px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/32141iADB27A376DA02A20/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2022-10-04 at 10.17.50.png" alt="Screen Shot 2022-10-04 at 10.17.50.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I then ran the cURL&lt;/P&gt;&lt;P&gt;&lt;A href="https://api.dropboxapi.com/oauth2/token" target="_blank"&gt;https://api.dropboxapi.com/oauth2/token&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-X POST&lt;BR /&gt;-d code=&lt;FONT color="#FF0000"&gt;&amp;lt;Same as above&amp;gt;&lt;/FONT&gt; \&lt;BR /&gt;-d grant_type=authorization_code \&lt;BR /&gt;-d client_id=&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt; \&lt;BR /&gt;-d client_secret=&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;And received this JSON Reply&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;{&lt;BR /&gt;"access_token": "sl.BQYCf_C1xmJomo&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;",&lt;BR /&gt;"account_id": "dbid:AAA&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;",&lt;BR /&gt;"expires_in": 14400,&lt;BR /&gt;"refresh_token": "NlNyjWipw-wAAA&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;",&lt;BR /&gt;"scope": "account_info.read account_info.write contacts.read contacts.write file_requests.read file_requests.write files.content.read files.content.write files.metadata.read files.metadata.write sharing.read sharing.write",&lt;BR /&gt;"token_type": "bearer",&lt;BR /&gt;"uid": "&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;"&lt;BR /&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I successfully obtain the new token however that token expired in 14400 seconds (4 hours).&amp;nbsp; I am not sure how to get a 'refreshed' token as the "refresh_token" doesn't work in place of the web obtained refresh token.&amp;nbsp; What am I doing wrong/or need to do to get a offline token?&amp;nbsp;&amp;nbsp; (My FM solution needs to continually talk to DB and this app is exclusively for this purpose and no external usage/request outside this link would be used.)&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 04 Oct 2022 06:29:46 GMT</pubDate>
    <dc:creator>AEC_IT</dc:creator>
    <dc:date>2022-10-04T06:29:46Z</dc:date>
    <item>
      <title>oauth2/token endpoint not returning refresh_token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/612640#M28323</link>
      <description>&lt;P&gt;My app starts the oauth flow with a URL like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A target="_blank" rel="noopener"&gt;https://www.dropbox.com/oauth2/authorize?response_type=code&amp;amp;client_id=&amp;lt;APP_CODE&amp;gt;&amp;amp;token_access_type=offline&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After the user authorizes the app and I get an authorization_code. And I use that code with the oath2/token endpoint, I am sending the following data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; code = &amp;lt;AUTH_CODE_FROM_WEBSITE&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; grant_type = authorization_code&lt;/P&gt;
&lt;P&gt;&amp;nbsp; client_id = &amp;lt;APP_CODE&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; client_secret = &amp;lt;APP_SECRET&amp;gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The call succeeds, and I do get a access_token, but there is no refresh_token. Is this expected? How can I get a refresh token?&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 16:55:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/612640#M28323</guid>
      <dc:creator>JustADev</dc:creator>
      <dc:date>2022-07-28T16:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: oauth2/token endpoint not returning refresh_token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/612646#M28326</link>
      <description>&lt;P&gt;[Cross-linking for reference: &lt;A href="https://stackoverflow.com/questions/73155941/dropbox-oauth2-token-endpoint-not-returning-refresh-token" target="_blank"&gt;https://stackoverflow.com/questions/73155941/dropbox-oauth2-token-endpoint-not-returning-refresh-token&lt;/A&gt; ]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just checked and this is working for me:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;# https://www.dropbox.com/oauth2/authorize?response_type=code&amp;amp;client_id=u1v&amp;lt;redacted&amp;gt;&amp;amp;token_access_type=offline

# resulted in:

# Access Code Generated
# Enter this code into &amp;lt;redacted&amp;gt; to finish the process
# Zu9U1&amp;lt;redacted&amp;gt;

 curl -X POST https://www.dropbox.com/oauth2/token \
	-d code=Zu9U1&amp;lt;redacted&amp;gt; \
	-d grant_type=authorization_code \
	-d client_id=u1v&amp;lt;redacted&amp;gt; \
	-d client_secret=&amp;lt;redacted&amp;gt;

{"access_token": "sl.BMQ&amp;lt;redacted&amp;gt;", "token_type": "bearer", "expires_in": 14400, "refresh_token": "_Ql10&amp;lt;redacted&amp;gt;", "scope": "account_info.read file_requests.read files.content.read files.content.write files.metadata.read files.metadata.write sharing.read sharing.write", "uid": "225&amp;lt;redacted&amp;gt;", "account_id": "dbid:AAB&amp;lt;redacted&amp;gt;"}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The JSON result from /oauth2/token contains a "refresh_token" field with the refresh token string. How are you checking the returned payload for the refresh token?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this isn't working for you, please show the actual /oauth2/authorize authorization and /oauth2/token request and response (just redacting private values).&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 17:22:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/612646#M28326</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-07-28T17:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: oauth2/token endpoint not returning refresh_token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/612658#M28327</link>
      <description>&lt;P&gt;My bad. I was using saved URL to create the web URL. And that saved URL did not have the correct token_access_type field. Thank you for help. This is working now.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2022 18:13:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/612658#M28327</guid>
      <dc:creator>JustADev</dc:creator>
      <dc:date>2022-07-28T18:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: oauth2/token endpoint not returning refresh_token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/626863#M28989</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I'm having issues with the 'offline' token process.&amp;nbsp; We have a FM app that communicates directly with DB via the API and we need this connection to be 'full time'.&amp;nbsp; I've followed the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obtained my refresh link using the following:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.dropbox.com/oauth2/authorize?client_id=" target="_blank"&gt;https://www.dropbox.com/oauth2/authorize?client_id=&lt;/A&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&amp;amp;token_access_type=offline&amp;amp;response_type=code&lt;/P&gt;&lt;P&gt;and after clicking thru a few webpages I get this &lt;EM&gt;(fyi this token has expired)&lt;/EM&gt;:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-10-04 at 10.17.50.png" style="width: 637px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/32134i898E9D2A9D0F1860/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2022-10-04 at 10.17.50.png" alt="Screen Shot 2022-10-04 at 10.17.50.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I then run this cURL:&lt;/P&gt;&lt;P&gt;&lt;A href="https://api.dropboxapi.com/oauth2/token" target="_blank"&gt;https://api.dropboxapi.com/oauth2/token&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-X POST&lt;BR /&gt;-d code=9ylKMaz1CWQAAAAAAAAAdLY4TF8yXOCuigOBVP9WJ98 \&lt;BR /&gt;-d grant_type=authorization_code \&lt;BR /&gt;-d client_id=&lt;FONT color="#FF0000"&gt;&amp;lt;Redacted&amp;gt;&lt;/FONT&gt; \&lt;BR /&gt;-d client_secret=&lt;FONT color="#FF0000"&gt;&amp;lt;Redacted&amp;gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;and get this JSON reply:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;{&lt;BR /&gt;"access_token": "sl.BQYCf_C1x&lt;FONT color="#FF0000"&gt;&amp;lt;Redacted&amp;gt;&lt;/FONT&gt;",&lt;BR /&gt;"account_id": "dbid:AAAI&lt;FONT color="#FF0000"&gt;&amp;lt;Redacted&amp;gt;&lt;/FONT&gt;",&lt;BR /&gt;"expires_in": 14400,&lt;BR /&gt;"refresh_token": "NlNyjWipw-wAAA&lt;FONT color="#FF0000"&gt;&amp;lt;Redacted&amp;gt;&lt;/FONT&gt;",&lt;BR /&gt;"scope": "account_info.read account_info.write contacts.read contacts.write file_requests.read file_requests.write files.content.read files.content.write files.metadata.read files.metadata.write sharing.read sharing.write",&lt;BR /&gt;"token_type": "bearer",&lt;BR /&gt;"uid": "4468854389"&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I then use the "access_token" in place of the manually generated (on the developer APP page) and all is great...until the 14400 seconds (4 hours) expires and then I'm forced to go thru the 'refresh token' web process.&amp;nbsp; Neither "access_token" or "refresh_token" seem to be of any use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I realize that I might have to script the above when accessing the API when a token has expired (when I get a 401 error) however unless I have a refresh token I'm not sure how I can do this without going thru the &lt;EM&gt;"&lt;A href="https://www.dropbox.com/oauth2/authorize?client_id=" target="_blank"&gt;https://www.dropbox.com/oauth2/authorize?client_id=&lt;/A&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&amp;amp;token_access_type=offline&amp;amp;response_type=code&lt;/EM&gt;" process.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea's would be great!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 02:30:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/626863#M28989</guid>
      <dc:creator>AEC_IT</dc:creator>
      <dc:date>2022-10-04T02:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: oauth2/token endpoint not returning refresh_token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/626880#M28991</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I'm having an issue with the 'offline' token.&amp;nbsp; I went thru the process of requesting a refresh token using the web link:&amp;nbsp; &lt;EM&gt;&lt;A href="https://www.dropbox.com/oauth2/authorize?client_id=" target="_blank"&gt;https://www.dropbox.com/oauth2/authorize?client_id=&lt;/A&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&amp;amp;token_access_type=offline&amp;amp;response_type=code&lt;/EM&gt; and received the following (expired token):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-10-04 at 10.17.50.png" style="width: 637px;"&gt;&lt;img src="https://www.dropboxforum.com/t5/image/serverpage/image-id/32141iADB27A376DA02A20/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2022-10-04 at 10.17.50.png" alt="Screen Shot 2022-10-04 at 10.17.50.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I then ran the cURL&lt;/P&gt;&lt;P&gt;&lt;A href="https://api.dropboxapi.com/oauth2/token" target="_blank"&gt;https://api.dropboxapi.com/oauth2/token&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-X POST&lt;BR /&gt;-d code=&lt;FONT color="#FF0000"&gt;&amp;lt;Same as above&amp;gt;&lt;/FONT&gt; \&lt;BR /&gt;-d grant_type=authorization_code \&lt;BR /&gt;-d client_id=&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt; \&lt;BR /&gt;-d client_secret=&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;And received this JSON Reply&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;{&lt;BR /&gt;"access_token": "sl.BQYCf_C1xmJomo&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;",&lt;BR /&gt;"account_id": "dbid:AAA&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;",&lt;BR /&gt;"expires_in": 14400,&lt;BR /&gt;"refresh_token": "NlNyjWipw-wAAA&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;",&lt;BR /&gt;"scope": "account_info.read account_info.write contacts.read contacts.write file_requests.read file_requests.write files.content.read files.content.write files.metadata.read files.metadata.write sharing.read sharing.write",&lt;BR /&gt;"token_type": "bearer",&lt;BR /&gt;"uid": "&lt;EM&gt;&lt;FONT color="#FF0000"&gt;&amp;lt;redacted&amp;gt;&lt;/FONT&gt;&lt;/EM&gt;"&lt;BR /&gt;}&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#333333"&gt;I successfully obtain the new token however that token expired in 14400 seconds (4 hours).&amp;nbsp; I am not sure how to get a 'refreshed' token as the "refresh_token" doesn't work in place of the web obtained refresh token.&amp;nbsp; What am I doing wrong/or need to do to get a offline token?&amp;nbsp;&amp;nbsp; (My FM solution needs to continually talk to DB and this app is exclusively for this purpose and no external usage/request outside this link would be used.)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 06:29:46 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/626880#M28991</guid>
      <dc:creator>AEC_IT</dc:creator>
      <dc:date>2022-10-04T06:29:46Z</dc:date>
    </item>
    <item>
      <title>Re: oauth2/token endpoint not returning refresh_token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/626885#M28993</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1579259"&gt;@AEC_IT&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Take a look &lt;A href="https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Issue-in-generating-access-token/m-p/592667" target="_blank" rel="noopener"&gt;here&lt;/A&gt; for step by step example. &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@41457EF40051AFF130FDBFE21B496926/emoticons/1f609.png" alt=":winking_face:" title=":winking_face:" /&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Oct 2022 07:31:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/626885#M28993</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-10-04T07:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: oauth2/token endpoint not returning refresh_token</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/627187#M29013</link>
      <description>&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Здравко,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" size="4"&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;Thanks! I didn't have the correct cURL parameter for using the 'refresh token'!&amp;nbsp; Inserted this into the cURL and all went fine!&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 03:21:27 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/oauth2-token-endpoint-not-returning-refresh-token/m-p/627187#M29013</guid>
      <dc:creator>AEC_IT</dc:creator>
      <dc:date>2022-10-05T03:21:27Z</dc:date>
    </item>
  </channel>
</rss>

