<?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: App Code and App Secret Input php curl in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399840#M21884</link>
    <description>&lt;P&gt;When calling&amp;nbsp;/oauth2/token, you can actually pass the app key and secret either as 'application/x-www-form-urlencoded' (not JSON) POST parameters, or in the place of the username and password, respectively, in "HTTP basic authentication", that is, in the "Authorization" header. You can find more information on that in the&amp;nbsp;/oauth2/token documentation:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Feb 2020 19:08:08 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2020-02-28T19:08:08Z</dc:date>
    <item>
      <title>App Code and App Secret Input php curl</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399834#M21881</link>
      <description>&lt;P&gt;When I add the required app code and app secret for the 0auth2/token curl, should it be placed in the http header, or in the curlopt_postfields setopt? If it goes in the http header, should it be a seperate item in the array, or in my json encoded array with the other 3 parameters?&lt;/P&gt;</description>
      <pubDate>Mon, 02 Mar 2020 07:01:58 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399834#M21881</guid>
      <dc:creator>FSUInnovation</dc:creator>
      <dc:date>2020-03-02T07:01:58Z</dc:date>
    </item>
    <item>
      <title>Re: App Code and App Secret Input php curl</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399836#M21882</link>
      <description>&lt;P&gt;Take a look here: &lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#authorization" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#authorization&lt;/A&gt; &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@F55D1311E4D274BF094217A54A6087D3/images/emoticons/1f609.png" alt=":wink:" title=":wink:" /&gt; This is normal GET request, where all parameters are in the query.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 19:04:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399836#M21882</guid>
      <dc:creator>Здравко</dc:creator>
      <dc:date>2020-02-28T19:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: App Code and App Secret Input php curl</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399840#M21884</link>
      <description>&lt;P&gt;When calling&amp;nbsp;/oauth2/token, you can actually pass the app key and secret either as 'application/x-www-form-urlencoded' (not JSON) POST parameters, or in the place of the username and password, respectively, in "HTTP basic authentication", that is, in the "Authorization" header. You can find more information on that in the&amp;nbsp;/oauth2/token documentation:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token" target="_blank"&gt;https://www.dropbox.com/developers/documentation/http/documentation#oauth2-token&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 19:08:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399840#M21884</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-02-28T19:08:08Z</dc:date>
    </item>
    <item>
      <title>Re: App Code and App Secret Input php curl</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399848#M21887</link>
      <description>&lt;P&gt;So, I would have a element in my httpheader array that looks like "Authorization: " . $appkey . ":" . $appsecret where the appkey colon appsecret are base 64 encoded? The element I have now is a utf8 encoded $appkey . ":" . $appsecret without "Authorization:" to the left of the string.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 19:47:15 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399848#M21887</guid>
      <dc:creator>FSUInnovation</dc:creator>
      <dc:date>2020-02-28T19:47:15Z</dc:date>
    </item>
    <item>
      <title>Re: App Code and App Secret Input php curl</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399876#M21892</link>
      <description>&lt;P&gt;I see you &lt;A href="https://www.dropboxforum.com/t5/API-Support-Feedback/header-array-invalid-request-for-token-auth-php/m-p/399872#M21890" target="_self"&gt;opened a new thread&lt;/A&gt; for this with more information so I'll follow up with you there.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Feb 2020 22:14:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/App-Code-and-App-Secret-Input-php-curl/m-p/399876#M21892</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2020-02-28T22:14:14Z</dc:date>
    </item>
  </channel>
</rss>

