<?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: Access token generated with refresh token got permissions revoked in Discuss Dropbox Developer &amp; API</title>
    <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722502#M3694</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;&lt;BR /&gt;Luckily I still have my old refresh token and I performed another request and this is what I got back.&lt;BR /&gt;&lt;BR /&gt;Unable to write file at location: uploads/1.txt. Client error: `POST &lt;A href="https://content.dropboxapi.com/2/files/upload" target="_blank" rel="noopener"&gt;https://content.dropboxapi.com/2/files/upload&lt;/A&gt;` resulted in a `401 Unauthorized` response:\n&lt;BR /&gt;{"error_summary": "missing_scope/...", "error": {".tag": "missing_scope", "required_scope": "files.content.write"}}&lt;BR /&gt;&lt;BR /&gt;Please keep in mind that I was not getting this 401 error before and I was successfully going throw the whole flow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hence my explanation that my refresh token generated an access token that does not have all the permissions.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Oct 2023 13:57:30 GMT</pubDate>
    <dc:creator>andrejpet</dc:creator>
    <dc:date>2023-10-18T13:57:30Z</dc:date>
    <item>
      <title>Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722405#M3686</link>
      <description>&lt;P&gt;As per the dropbox offline flow, I've set up a flow where I've generated a refresh token after the owner of the dropbox (me)&amp;nbsp;&lt;BR /&gt;- Generated an access code using this URL&lt;BR /&gt;&lt;A href="https://www.dropbox.com/oauth2/authorize?client_id" target="_blank" rel="noopener noreferrer"&gt;https://www.dropbox.com/oauth2/authorize?client_id&lt;/A&gt;&lt;SPAN&gt;&amp;lt;YOUR_APP_KEY&amp;gt;&amp;amp;response_type=code&amp;amp;token_access_type=offline&lt;/SPAN&gt;&lt;BR /&gt;- Used the access code to generate a token using this request&lt;BR /&gt;&lt;SPAN&gt;curl&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://api.dropbox.com/oauth2/token" target="_blank" rel="noopener noreferrer"&gt;https://api.dropbox.com/oauth2/token&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;-d code=&amp;lt;ACCESS_CODE&amp;gt; -d grant_type=authorization_code -u &amp;lt;APP_KEY&amp;gt;:&amp;lt;APP_SECRET&amp;gt;&lt;/SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;I was succesfully generating an access token with the refresh token that I got and my files were being uploaded.&lt;BR /&gt;After a month I come back and I get errors that my token no longer has permissions to do so.&lt;BR /&gt;This should not be the case since I did not set an expiration date on the refresh token or revoked any permissions.&lt;BR /&gt;&lt;BR /&gt;Because this flow starts with an owner interaction, it cannot be restarted with an app in production as many uploads will be lost.&lt;BR /&gt;A new refresh token was generated and it all works now, but again I don't want this to happen in production.&lt;BR /&gt;&lt;BR /&gt;How do I solve the issue?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 09:02:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722405#M3686</guid>
      <dc:creator>andrejpet</dc:creator>
      <dc:date>2023-10-18T09:02:31Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722410#M3687</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I suspect, you're missing some details of how refresh token is used. Take a look on the discussion &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 a detail ed example. Just don't forget the refresh itself; owning the refresh token is NOT enough!&lt;/P&gt;&lt;P&gt;Good luck.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 09:23:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722410#M3687</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-10-18T09:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722412#M3688</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790"&gt;@Здравко&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I just read the info in the link you sent me and from what I've understood it's exactly the same as my explanation.&lt;BR /&gt;I am using a refresh token to generate an access token.&lt;BR /&gt;Then the access token is used for auth.&lt;BR /&gt;&lt;BR /&gt;This happens on each request to dropbox.&amp;nbsp;&lt;BR /&gt;1. Generate access token with refresh token&lt;BR /&gt;2. Perform API call with with access token&lt;BR /&gt;&lt;BR /&gt;The problem I had is that after a given period of time the access token that was generated by a refresh token had no permissions.&lt;BR /&gt;This is my issue.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 09:37:57 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722412#M3688</guid>
      <dc:creator>andrejpet</dc:creator>
      <dc:date>2023-10-18T09:37:57Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722444#M3689</link>
      <description>&lt;P&gt;Hm...&lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@9AD39CA637682E9616FBE31CDAF1B6C4/emoticons/1f914.png" alt=":thinking_face:" title=":thinking_face:" /&gt; Ok. &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;, let me ask, after initial receiving of access token with grant type access code, how often you need to and receive access token with grant type refresh token? In other words, how often you do a call something like:&lt;/P&gt;&lt;P&gt;curl &lt;A href="https://api.dropbox.com/oauth2/token" target="_blank"&gt;https://api.dropbox.com/oauth2/token&lt;/A&gt; -d grant_type=refresh_token -d refresh_token=oDfT54975DfGh12345KlMnOpQrSt01a -u &amp;lt;App key&amp;gt;:&amp;lt;App secret&amp;gt;&lt;/P&gt;&lt;P&gt;Hope the rhetorics gives direction. &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;</description>
      <pubDate>Wed, 18 Oct 2023 11:28:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722444#M3689</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-10-18T11:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722448#M3690</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/422790"&gt;@Здравко&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I need to do this on every file upload.&lt;BR /&gt;I do not control when the file is going to be uploaded and I'm not in a position where I can get an access token that lasts only 4 hours.&lt;BR /&gt;Hence the decision to go with a refresh token (that lasts forever) and use it to give me a new access token before each upload.&lt;BR /&gt;There were some online solutions following this path and claimed it worked.&lt;BR /&gt;The same happened on my end up until one request failed due to the access token generated by the refresh token had insufficient permissions.&lt;BR /&gt;&lt;BR /&gt;The whole flow is a bit complicated so if you could point me into the right direction I would be really grateful.&lt;BR /&gt;&lt;BR /&gt;My confusion lies in the part where I was getting valid access tokens with my refresh token for a month and then all of the sudden my access tokens have no permission.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 11:48:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722448#M3690</guid>
      <dc:creator>andrejpet</dc:creator>
      <dc:date>2023-10-18T11:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722472#M3691</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;, unfortunately I cannot say much more than what's already said in the thread I linked to above. I think it's detailed enough. Even more it's the first time, I know about for such thing, you described:&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;BR /&gt;My confusion lies in the part where I was getting valid access tokens with my refresh token for a month and then all of the sudden my access tokens have no permission.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you have valid refresh token and you're able to get valid access token at least once, you can always get other access token with the same validity again, so such a situation is impossible. The only way refresh token lost validity is revoking. Even more, in such a case you cannot receive access token with limited validity, you'll not be able receive any access token&amp;nbsp; - you'll receive error on a try then (no receiving access token with no permission).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;BR /&gt;I need to do this on every file upload.&lt;BR /&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It's not something mandatory. You can calculate when the token will expire on every refresh (the refresh moment + validity period) and on every regular API call (before the call actually) check if the current moment goes close to the expiration moment. If the moment is too close (let say less than a 2 or 5 minutes) perform new refresh and perform the ongoing regular API call after that and so on. This is the way; in such a way you will perform exactly so much refreshes as needed, neither more or less. &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;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;BR /&gt;I do not control when the file is going to be uploaded and I'm not in a position where I can get an access token that lasts only 4 hours.&lt;BR /&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Ha...&lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt; Really? And who is in such a position if not you? &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@D88F213CAFB196B6AB70612B08AD9D31/emoticons/1f601.png" alt=":beaming_face_with_smiling_eyes:" title=":beaming_face_with_smiling_eyes:" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Add: You didn't mention what development environment (programing language) you're using. If you use such that can be in use together with some of the &lt;A title="SDKs" href="https://www.dropbox.com/developers/documentation#sdks" target="_blank" rel="noopener"&gt;supported Dropbox SDK's&lt;/A&gt;, you don't need to do anything of that we discussed here. Everything is implemented there; you'll need only to initialize properly client object.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 13:11:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722472#M3691</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-10-18T13:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722484#M3693</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt; I see Здравко already helpfully offered some guidance, but if you still need help with this, it may be useful if you can share the relevant code snippet and the error/output you're getting. For instance, clarify exactly what you mean when you say "all of the sudden my access tokens have no permission"; are you getting 'expired_access_token', 'invalid_access_token', or some other error?&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 13:06:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722484#M3693</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-10-18T13:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722502#M3694</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;&lt;BR /&gt;Luckily I still have my old refresh token and I performed another request and this is what I got back.&lt;BR /&gt;&lt;BR /&gt;Unable to write file at location: uploads/1.txt. Client error: `POST &lt;A href="https://content.dropboxapi.com/2/files/upload" target="_blank" rel="noopener"&gt;https://content.dropboxapi.com/2/files/upload&lt;/A&gt;` resulted in a `401 Unauthorized` response:\n&lt;BR /&gt;{"error_summary": "missing_scope/...", "error": {".tag": "missing_scope", "required_scope": "files.content.write"}}&lt;BR /&gt;&lt;BR /&gt;Please keep in mind that I was not getting this 401 error before and I was successfully going throw the whole flow.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hence my explanation that my refresh token generated an access token that does not have all the permissions.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 13:57:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722502#M3694</guid>
      <dc:creator>andrejpet</dc:creator>
      <dc:date>2023-10-18T13:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722510#M3695</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;Hence my explanation that my refresh token generated an access token that does not have all the permissions.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;, Yes, of course, but this doesn't happen suddenly! Actually you never had such permission granted to the refresh token and following to the access token. You need to make sure you have the needed scope (i.e. files.content.write) and perform OAuth anew. Only changing scopes is NOT enough! Such a change is not retroactive. It'll affect tokens from following OAuths only.&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:16:56 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722510#M3695</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-10-18T14:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722511#M3696</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt; Thanks for following up. A 'missing_scope' error indicates that while the app itself may be permitted to use that scope, the particular access token you're using to make the API call does not have that scope granted. Also, be aware that just adding a scope to your app via the &lt;A href="https://www.dropbox.com/developers/apps" target="_blank" rel="noopener noreferrer"&gt;App Console&lt;/A&gt; does not retroactively grant that scope to existing access tokens or refresh tokens. That being the case, to make any API calls that require that scope, you'd need to to get a new access token/refresh token with that scope included. Refer to the &lt;A href="https://developers.dropbox.com/oauth-guide" target="_blank" rel="noopener noreferrer"&gt;OAuth Guide&lt;/A&gt; and &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#authorization" target="_blank" rel="noopener noreferrer"&gt;authorization documentation&lt;/A&gt; for more information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, in this case that should mean that either:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;The particular refresh token used to retrieve that access token was not originally authorized with the 'files.content.write' scope, or&lt;/LI&gt;
&lt;LI&gt;The &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token" target="_blank"&gt;/oauth2/token&lt;/A&gt; call with 'grant_type=refresh_token' used to retrieve that access token set the 'scope' parameter to a value not containing the 'files.content.write' scope, meaning that the resulting access token would not have that scope.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;To fix 1, you'd need to re-authorize the app with the OAuth app authorization flow again to get a new refresh token/access token with that scope.&lt;/P&gt;
&lt;P&gt;If 1 does not apply though and that refresh token does already have that scope, to fix 2, you'd only need to make that &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token" target="_blank"&gt;/oauth2/token&lt;/A&gt; call with 'grant_type=refresh_token' again but include the needed scope in the 'scope' parameter, or omit the 'scope' parameter entirely.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For reference, I just tested this functionality out myself and it is working as expected for me. If something isn't working properly, please share the full steps/code to reproduce the issue so we can investigate.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:20:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722511#M3696</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-10-18T14:20:09Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722513#M3697</link>
      <description>&lt;P&gt;Could be that during the dev process I accidentally created a refresh token without the app having valid permissions.&lt;BR /&gt;Can we keep this discussion alive just in case something pops up again?&lt;BR /&gt;&lt;BR /&gt;I just want confirmation that the refresh token lives forever.&lt;BR /&gt;&lt;BR /&gt;Thanks for your replies, in the end I re-started the whole process&lt;BR /&gt;1. Generated an access code&lt;BR /&gt;2. Requested a refresh token&lt;BR /&gt;3. Used the refresh token to get a new access token on each upload&lt;BR /&gt;4. Uploaded files.&lt;BR /&gt;&lt;BR /&gt;Was pretty sure I got the whole flow right from the get go, this surprised me as I did not recall creating an app without permissions, but let's see if the token scope goes missing again.&lt;BR /&gt;I've saved all the creds so if anything pops up I'll contact you again.&lt;BR /&gt;&lt;BR /&gt;Thank you for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:29:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722513#M3697</guid>
      <dc:creator>andrejpet</dc:creator>
      <dc:date>2023-10-18T14:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722516#M3698</link>
      <description>&lt;P&gt;Dropbox API refresh tokens do not expire automatically, but they can be revoked on demand by the app or user.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And yes, you can reply here again if/when needed.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:31:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722516#M3698</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2023-10-18T14:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Access token generated with refresh token got permissions revoked</title>
      <link>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722519#M3699</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/1745339"&gt;@andrejpet&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;Could be that during the dev process I accidentally created a refresh token without the app having valid permissions.&lt;BR /&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you used that token, for sure.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 14:35:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Discuss-Dropbox-Developer-API/Access-token-generated-with-refresh-token-got-permissions/m-p/722519#M3699</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2023-10-18T14:35:09Z</dc:date>
    </item>
  </channel>
</rss>

