<?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: DropBoxRest API in C# OAuth2 Does not contain a definition for AuthorizeAsync in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBoxRest-API-in-C-OAuth2-Does-not-contain-a-definition-for/m-p/234559#M12817</link>
    <description>&lt;P&gt;That's &lt;EM&gt;exactly&lt;/EM&gt; why I left this up even though I figured out the answer. I really wasn't even sure if I was using the right code (or if it was current). Thanks &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@13532C4C3505179FBF012F1C117AE2EB/emoticons/1f604.png" alt=":grinning_face_with_smiling_eyes:" title=":grinning_face_with_smiling_eyes:" /&gt; I'll check that out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Oh! And the reason why I posted it here even though it's a third party SDK is because I foudn this thread:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://www.dropboxforum.com/t5/API-support/How-to-get-files-by-DropBoxRest-API-in-C/m-p/100846#M3026" target="_blank"&gt;https://www.dropboxforum.com/t5/API-support/How-to-get-files-by-DropBoxRest-API-in-C/m-p/100846#M3026&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;and I was hoping it would catch the attention of these people too.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;I'm glad to hear you sorted that&amp;nbsp;out already.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference though, it looks like you're using &lt;A href="https://github.com/saguiitay/DropboxRestAPI" target="_self"&gt;a third party SDK&lt;/A&gt;. As it's made by a third party, we wouldn't be able to provide support for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, it unfortunately looks like &lt;A href="https://github.com/saguiitay/DropboxRestAPI" target="_self"&gt;that SDK&lt;/A&gt;&amp;nbsp;uses the old&amp;nbsp;Dropbox API v1, which is &lt;A href="https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/" target="_self"&gt;deprecated&lt;/A&gt;, and going to be retired soon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should move to &lt;A href="https://www.dropbox.com/developers" target="_self"&gt;API v2&lt;/A&gt; instead. We have an &lt;A href="https://www.dropbox.com/developers/documentation/dotnet" target="_self"&gt;official API v2 .NET SDK&lt;/A&gt; you can use.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jul 2017 23:51:17 GMT</pubDate>
    <dc:creator>samamerrifield</dc:creator>
    <dc:date>2017-07-28T23:51:17Z</dc:date>
    <item>
      <title>DropBoxRest API in C# OAuth2 Does not contain a definition for AuthorizeAsync</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBoxRest-API-in-C-OAuth2-Does-not-contain-a-definition-for/m-p/234518#M12813</link>
      <description>&lt;P&gt;I'm not entirely sure where this goes. I'm trying to write a program that access specific files in my dropbox account but it keeps giving me this error message. How do I fix that?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error message appears on just this line of code:&lt;/P&gt;&lt;P&gt;var authRequestUrl = await client.Core.OAuth2.AuthorizeAsync("code");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm still kind of learning how to use this. I got the code from this site&amp;nbsp;&lt;A href="https://github.com/saguiitay/DropboxRestAPI" target="_blank"&gt;https://github.com/saguiitay/DropboxRestAPI&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Update: Oops! I sort of found the solution right after I posted this. Idk if it really fixes my problem yet but on the site above someone asks a similar question and says to use this line instead:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;var authRequestUrl = client.Core.OAuth2.Authorize("code");&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:20:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBoxRest-API-in-C-OAuth2-Does-not-contain-a-definition-for/m-p/234518#M12813</guid>
      <dc:creator>samamerrifield</dc:creator>
      <dc:date>2019-05-29T09:20:31Z</dc:date>
    </item>
    <item>
      <title>Re: DropBoxRest API in C# OAuth2 Does not contain a definition for AuthorizeAsync</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBoxRest-API-in-C-OAuth2-Does-not-contain-a-definition-for/m-p/234543#M12815</link>
      <description>&lt;P&gt;I'm glad to hear you sorted that&amp;nbsp;out already.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For reference though, it looks like you're using &lt;A href="https://github.com/saguiitay/DropboxRestAPI" target="_self"&gt;a third party SDK&lt;/A&gt;. As it's made by a third party, we wouldn't be able to provide support for it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, it unfortunately looks like &lt;A href="https://github.com/saguiitay/DropboxRestAPI" target="_self"&gt;that SDK&lt;/A&gt;&amp;nbsp;uses the old&amp;nbsp;Dropbox API v1, which is &lt;A href="https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/" target="_self"&gt;deprecated&lt;/A&gt;, and going to be retired soon.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You should move to &lt;A href="https://www.dropbox.com/developers" target="_self"&gt;API v2&lt;/A&gt; instead. We have an &lt;A href="https://www.dropbox.com/developers/documentation/dotnet" target="_self"&gt;official API v2 .NET SDK&lt;/A&gt; you can use.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2017 20:14:43 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBoxRest-API-in-C-OAuth2-Does-not-contain-a-definition-for/m-p/234543#M12815</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-07-28T20:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: DropBoxRest API in C# OAuth2 Does not contain a definition for AuthorizeAsync</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBoxRest-API-in-C-OAuth2-Does-not-contain-a-definition-for/m-p/234559#M12817</link>
      <description>&lt;P&gt;That's &lt;EM&gt;exactly&lt;/EM&gt; why I left this up even though I figured out the answer. I really wasn't even sure if I was using the right code (or if it was current). Thanks &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@13532C4C3505179FBF012F1C117AE2EB/emoticons/1f604.png" alt=":grinning_face_with_smiling_eyes:" title=":grinning_face_with_smiling_eyes:" /&gt; I'll check that out.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Oh! And the reason why I posted it here even though it's a third party SDK is because I foudn this thread:&amp;nbsp;&lt;BR /&gt;&lt;A href="https://www.dropboxforum.com/t5/API-support/How-to-get-files-by-DropBoxRest-API-in-C/m-p/100846#M3026" target="_blank"&gt;https://www.dropboxforum.com/t5/API-support/How-to-get-files-by-DropBoxRest-API-in-C/m-p/100846#M3026&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;and I was hoping it would catch the attention of these people too.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://www.dropboxforum.com/t5/user/viewprofilepage/user-id/10"&gt;@Greg-DB&lt;/a&gt; wrote:&lt;BR /&gt;&lt;P&gt;I'm glad to hear you sorted that&amp;nbsp;out already.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For reference though, it looks like you're using &lt;A href="https://github.com/saguiitay/DropboxRestAPI" target="_self"&gt;a third party SDK&lt;/A&gt;. As it's made by a third party, we wouldn't be able to provide support for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, it unfortunately looks like &lt;A href="https://github.com/saguiitay/DropboxRestAPI" target="_self"&gt;that SDK&lt;/A&gt;&amp;nbsp;uses the old&amp;nbsp;Dropbox API v1, which is &lt;A href="https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/" target="_self"&gt;deprecated&lt;/A&gt;, and going to be retired soon.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You should move to &lt;A href="https://www.dropbox.com/developers" target="_self"&gt;API v2&lt;/A&gt; instead. We have an &lt;A href="https://www.dropbox.com/developers/documentation/dotnet" target="_self"&gt;official API v2 .NET SDK&lt;/A&gt; you can use.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2017 23:51:17 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/DropBoxRest-API-in-C-OAuth2-Does-not-contain-a-definition-for/m-p/234559#M12817</guid>
      <dc:creator>samamerrifield</dc:creator>
      <dc:date>2017-07-28T23:51:17Z</dc:date>
    </item>
  </channel>
</rss>

