<?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: Login to Dropbox from browser extension on Chrome in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646435#M29660</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;One bad thing: I still can't re-use the login code if I reload the page. I assume I'm doing something wrong, please see these steps&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/764286"&gt;@dbox-arg0&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;This isn't a bad thing, it's a normal thing - according the specification. The code you're receiving is "one shot" type - you can use it once and forget it. Where do you read that you would need it further?! 🧐 Wherever is this - it's wrong! 🤫&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/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;3. Down the line this gets to the call &lt;EM&gt;getAccessTokenFromCode()&lt;/EM&gt;, this returns a &lt;FONT color="#339966"&gt;&lt;U&gt;&lt;STRONG&gt;refresh token&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;. Then the extension can access the files in my Dropbox folders&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Nice... &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@33D4BCC6D65AF2C3C98D90A56992C1F6/emoticons/1f607.png" alt=":smiling_face_with_halo:" title=":smiling_face_with_halo:" /&gt; That's exactly what you need, but where do you keep the received "refresh token" (the only token that never expire or until explicit revoke)? &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; If you forgot it here, you won't be able refresh your access token later (after the access token expires)!!!&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/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;5. I have my login code &lt;EM&gt;40h...tbG5pCng&lt;/EM&gt; in local browser storage, so the first function I call is &lt;EM&gt;getAccessTokenFromCode()&lt;/EM&gt; with it, and I get HTTP 400. Why just seconds ago this gave me a refresh token and now I got 400. In the broswer I can see that the URL is exactly the same as used in step 3 above.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I hope you already know what's going wrong here. &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; If not, take a look above once again.&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/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;(Another question, I also get an access token, not only a refresh token, why is that, do I have to use it?)&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you aren't using the refresh token in any way, why have you selected offline access? Do you really need offline access or not exactly? It's possible to implement your access in both ways. It's matter of your design decision. Read the resources, that Greg did link to above, once again and make your consistent decision - don't try mix different decisions.&lt;/P&gt;</description>
    <pubDate>Mon, 26 Dec 2022 13:03:49 GMT</pubDate>
    <dc:creator>Здравко</dc:creator>
    <dc:date>2022-12-26T13:03:49Z</dc:date>
    <item>
      <title>Login to Dropbox from browser extension on Chrome</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/645786#M29649</link>
      <description>&lt;P&gt;I'm using this fragment of code for OAuth URL:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;self.m_dbxAuth.getAuthenticationUrl(
        self.m_fullReceiverPath, // [redirectUri]
        undefined,    // [state] To help prevent cross site scripting attacks.
        'code',       // [authType] Auth type, defaults to 'token' or 'code'
        'offline',     // [tokenAccessType] null, 'legacy', 'online', 'offline'
        undefined,    // [scope] Scopes to request for the grant
        undefined,    // [includeGrantedScopes] 'user', 'team'
        true          // [usePKCE]
        )
    .then(authUrl =&amp;gt; {
      self.m_authUrl = authUrl
})&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(followed by &lt;EM&gt;chrome.identity.launchWebAuthFlow()&lt;/EM&gt; to execute the login workflow)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;On Firefox this works flawlessly, I logged in once and never again I was asked to confirm to login again. But on Chrome I'm prompted every day to login again in the browser extension (even if I'm already logged in dropbox.com on that browser)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this the expected behaviour, why is it differnt in Firefox and Chrome, or are the parameters I chose for &lt;EM&gt;getAuthenticationUrl()&lt;/EM&gt; wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PS: The snipped of code is from this file: &lt;A href="https://github.com/pmarinov/qfeeds/blob/master/qfeeds/connect_dbox.js" target="_blank" rel="noopener"&gt;https://github.com/pmarinov/qfeeds/blob/master/qfeeds/connect_dbox.js&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 09:58:29 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/645786#M29649</guid>
      <dc:creator>dbox-arg0</dc:creator>
      <dc:date>2022-12-26T09:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Login to Dropbox from browser extension on Chrome</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/645885#M29652</link>
      <description>&lt;P&gt;We can't offer support for the third party browsers or libraries themselves, as they're not made by Dropbox, so you may need to debug that to see what code/conditions trigger that getAuthenticationUrl/launchWebAuthFlow code path to run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for the Dropbox side of things, I see you are setting tokenAccessType to offline in &lt;A href="https://dropbox.github.io/dropbox-sdk-js/global.html#getAuthenticationUrl" target="_blank"&gt;getAuthenticationUrl&lt;/A&gt;, meaning that Dropbox will return a refresh token to enable the app to maintain long-term access without having the use re-authorize the app. (You can find more information in &lt;A href="https://developers.dropbox.com/oauth-guide" target="_blank"&gt;the OAuth Guide&lt;/A&gt;.) The Dropbox SDK will handle that for you automatically as long as you set the refresh token and app key in the client &lt;A href="https://github.com/dropbox/dropbox-sdk-js/blob/b5631e4b5b0e9eb6d3297e1ee57ad29a63d49898/examples/javascript/PKCE-backend/code_flow_example.js#L38" target="_blank"&gt;like in this example&lt;/A&gt;. Without using the refresh token, access from new authorizations would only last a few hours as new access tokens are "short-lived".&lt;/P&gt;</description>
      <pubDate>Thu, 22 Dec 2022 14:36:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/645885#M29652</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-12-22T14:36:33Z</dc:date>
    </item>
    <item>
      <title>Re: Login to Dropbox from browser extension on Chrome</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646187#M29655</link>
      <description>&lt;P&gt;Thank you very much for your response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see my mistake as I haven't used the refresh token via setRefreshToken(), I've made the correction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will debug a bit more the code on my side the way I call the Dropbox API.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Dec 2022 03:53:07 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646187#M29655</guid>
      <dc:creator>dbox-arg0</dc:creator>
      <dc:date>2022-12-24T03:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: Login to Dropbox from browser extension on Chrome</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646378#M29656</link>
      <description>&lt;P&gt;I've reverted the workflow on Chrome away from &lt;EM&gt;launchWebAuthFlow()&lt;/EM&gt;, it wasn't needed on Chrome to begin with. One benefit is that now I can trace the complete workflow as I have my own OAuth receiver page.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One good thing: I no longer have to re-enter my user name and password if I'm already logged in on that Chrome browser.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One bad thing: I still can't re-use the login code if I reload the page. I assume I'm doing something wrong, please see these steps&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I open the browser extension, I transition to the login page &lt;EM&gt;getAuthenticationUrl()&lt;/EM&gt;, I click to instruct Dropbox to connect the app.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. The OAuth receiver page get this URL, url: &lt;EM&gt;chrome-extension://kdjij.../qfeeds/oauth_receiver_dbox.html?code=40h...tbG5pCng&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Down the line this gets to the call &lt;EM&gt;getAccessTokenFromCode()&lt;/EM&gt;, this returns a refresh token. Then the extension can access the files in my Dropbox folders&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;URL is POST:&lt;BR /&gt;&lt;A href="https://api.dropboxapi.com/oauth2/token?grant_type=authorization_code&amp;amp;code=40hlw...&amp;amp;client_id=25sck7...&amp;amp;code_verifier=MTEsMj...&amp;amp;redirect_uri=chrome-extension://kdjij.../qfeeds/oauth_receiver_dbox.html" target="_blank" rel="noopener"&gt;https://api.dropboxapi.com/oauth2/token?grant_type=authorization_code&amp;amp;code=40hlw...&amp;amp;client_id=25sck7...&amp;amp;code_verifier=MTEsMj...&amp;amp;redirect_uri=chrome-extension://kdjij.../qfeeds/oauth_receiver_dbox.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Everything until this moment is good.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Now, I click Realod on the page of the extension&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;5. I have my login code &lt;EM&gt;40h...tbG5pCng&lt;/EM&gt; in local browser storage, so the first function I call is &lt;EM&gt;getAccessTokenFromCode()&lt;/EM&gt; with it, and I get HTTP 400. Why just seconds ago this gave me a refresh token and now I got 400. In the broswer I can see that the URL is exactly the same as used in step 3 above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(Another question, I also get an access token, not only a refresh token, why is that, do I have to use it?)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for taking the time to look into this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ps: The code has been updated on GitHub too&lt;BR /&gt;ps: I'm using the Javascript library that comes from Dropbox SDK, downloaded from here: &lt;A href="https://unpkg.com/dropbox@10.12.0/dist/Dropbox-sdk.js" target="_blank"&gt;https://unpkg.com/dropbox@10.12.0/dist/Dropbox-sdk.js&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 05:59:38 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646378#M29656</guid>
      <dc:creator>dbox-arg0</dc:creator>
      <dc:date>2022-12-26T05:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Login to Dropbox from browser extension on Chrome</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646435#M29660</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;One bad thing: I still can't re-use the login code if I reload the page. I assume I'm doing something wrong, please see these steps&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Hi &lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/764286"&gt;@dbox-arg0&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;This isn't a bad thing, it's a normal thing - according the specification. The code you're receiving is "one shot" type - you can use it once and forget it. Where do you read that you would need it further?! 🧐 Wherever is this - it's wrong! 🤫&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/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;3. Down the line this gets to the call &lt;EM&gt;getAccessTokenFromCode()&lt;/EM&gt;, this returns a &lt;FONT color="#339966"&gt;&lt;U&gt;&lt;STRONG&gt;refresh token&lt;/STRONG&gt;&lt;/U&gt;&lt;/FONT&gt;. Then the extension can access the files in my Dropbox folders&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Nice... &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@33D4BCC6D65AF2C3C98D90A56992C1F6/emoticons/1f607.png" alt=":smiling_face_with_halo:" title=":smiling_face_with_halo:" /&gt; That's exactly what you need, but where do you keep the received "refresh token" (the only token that never expire or until explicit revoke)? &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; If you forgot it here, you won't be able refresh your access token later (after the access token expires)!!!&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/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;5. I have my login code &lt;EM&gt;40h...tbG5pCng&lt;/EM&gt; in local browser storage, so the first function I call is &lt;EM&gt;getAccessTokenFromCode()&lt;/EM&gt; with it, and I get HTTP 400. Why just seconds ago this gave me a refresh token and now I got 400. In the broswer I can see that the URL is exactly the same as used in step 3 above.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I hope you already know what's going wrong here. &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; If not, take a look above once again.&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/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;(Another question, I also get an access token, not only a refresh token, why is that, do I have to use it?)&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;If you aren't using the refresh token in any way, why have you selected offline access? Do you really need offline access or not exactly? It's possible to implement your access in both ways. It's matter of your design decision. Read the resources, that Greg did link to above, once again and make your consistent decision - don't try mix different decisions.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Dec 2022 13:03:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646435#M29660</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2022-12-26T13:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: Login to Dropbox from browser extension on Chrome</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646668#M29666</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/764286"&gt;@dbox-arg0&lt;/a&gt;&amp;nbsp;Здравко is correct. The "authorization code" can only be used once. You should use it to get the refresh token, and then you should store and re-use the refresh token.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, the initial authorization flow will give you an access token that you can use immediately, in addition to the refresh token. You can use that initial access token, but it's not required. You can instead just store the refresh token and use it to get a new access token later when needed.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2022 15:38:19 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/646668#M29666</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2022-12-27T15:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Login to Dropbox from browser extension on Chrome</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/647017#M29681</link>
      <description>&lt;P&gt;Ah, it seems that I have gone in the wrong direction.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, the documentation explains that the login code was one-time, I don't know why I got confused at some point in the implementation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've made the corrections -- the token obtained by getAccessTokenFromCode() yesterday, preserved in local storage, is valid today, even after reloading the browser extension. This is what I wanted.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for everything, this was a great help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Мерси много!&lt;BR /&gt;&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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2022 05:44:35 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Login-to-Dropbox-from-browser-extension-on-Chrome/m-p/647017#M29681</guid>
      <dc:creator>dbox-arg0</dc:creator>
      <dc:date>2022-12-29T05:44:35Z</dc:date>
    </item>
  </channel>
</rss>

