<?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: OAuth access token type in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/242315#M13511</link>
    <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/489139"&gt;@lazedo&lt;/a&gt;&amp;nbsp;Thanks for the post. I'm not aware of any current plans to change this, but I'll add your vote to the request.&lt;/P&gt;</description>
    <pubDate>Tue, 19 Sep 2017 19:35:02 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2017-09-19T19:35:02Z</dc:date>
    <item>
      <title>OAuth access token type</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227056#M12353</link>
      <description>&lt;P&gt;Currently during authentication retyrned URL contains &lt;EM&gt;token_type=bearer&lt;/EM&gt; parameter while respective header must be &lt;EM&gt;Bearer&lt;/EM&gt; (else 400 is returned).&lt;/P&gt;&lt;P&gt;Is that possible to return correct case in &lt;EM&gt;token_type &lt;/EM&gt;so one could just use it in header? Or it is by-design and developer must always implement own mapping for auth types like &lt;EM&gt;bearer&lt;/EM&gt;-&amp;gt;&lt;EM&gt;Bearer&lt;/EM&gt; ?&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:21:30 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227056#M12353</guid>
      <dc:creator>Andrii M.</dc:creator>
      <dc:date>2019-05-29T09:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: OAuth access token type</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227204#M12360</link>
      <description>&lt;P&gt;Thanks for the post! I can't speak to the intent here, but I'll send this along to the team to see if we can get that changed. I can't make any promises as to if they will do so though.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2017 20:41:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227204#M12360</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-06-19T20:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: OAuth access token type</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227326#M12365</link>
      <description>&lt;P&gt;Thank you, Greg, for response.&lt;/P&gt;&lt;P&gt;Even it this is intensionally and won't be changed in future, I would appreciate advices of the parameter usage:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Implement own mapping from types returned in the URL to proper header values (need the ful list of supported types described in documentation with stress on the correct capitalizing)&lt;/LI&gt;&lt;LI&gt;Use types from URL but capitalize it (now it's my curren implementation)&lt;/LI&gt;&lt;LI&gt;Always use &lt;EM&gt;Bearer&lt;/EM&gt; in the auth header and ignore the type from URL&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 07:38:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227326#M12365</guid>
      <dc:creator>Andrii M.</dc:creator>
      <dc:date>2017-06-20T07:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: OAuth access token type</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227536#M12370</link>
      <description>&lt;P&gt;According to &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-authorize" target="_self"&gt;the documentation&lt;/A&gt;, we only support the "bearer" token type, so any of these should be fine.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2017 18:23:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/227536#M12370</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-06-20T18:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: OAuth access token type</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/242260#M13504</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the api does not accept "bearer", it only accepts "Bearer".&lt;/P&gt;&lt;P&gt;the returned value in token_type is "bearer" and most oauth clients will use that value to compose the Authorization Header.&lt;/P&gt;&lt;P&gt;the result is that the Authorization being sent to subsequent requests has the Authorization header "Authorization: bearer xxxxx" instead of "Authorization: Bearer xxxxx".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it seems to me that, the token_type value returned should be "Bearer" instead of "bearer" if api only accepts that, or change the api to accept "bearer".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thoughts ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 15:24:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/242260#M13504</guid>
      <dc:creator>lazedo</dc:creator>
      <dc:date>2017-09-19T15:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: OAuth access token type</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/242315#M13511</link>
      <description>&lt;P&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/489139"&gt;@lazedo&lt;/a&gt;&amp;nbsp;Thanks for the post. I'm not aware of any current plans to change this, but I'll add your vote to the request.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2017 19:35:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/OAuth-access-token-type/m-p/242315#M13511</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-09-19T19:35:02Z</dc:date>
    </item>
  </channel>
</rss>

