<?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: CSharp SDK dbx.Files.UploadAsync doesn't work in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85524#M2600</link>
    <description>&lt;P&gt;I suspect that the&amp;nbsp;error is that your path doesn't start with a slash. In API v2,&amp;nbsp;paths should either be empty, meaning the root of&amp;nbsp;the user's Dropbox, or they should start with a slash. So try using "/test" as the value of folder.&lt;/P&gt;
&lt;P&gt;As to why you don't see the exception,&amp;nbsp;my C#&amp;nbsp;async/await knowledge is somewhat limited. Is&amp;nbsp;the&amp;nbsp;containing method marked async? I think from just this snippet of code, it may not be possible to tell if the exception should get caught here or not.&lt;/P&gt;</description>
    <pubDate>Tue, 01 Sep 2015 08:41:02 GMT</pubDate>
    <dc:creator>Steve M.</dc:creator>
    <dc:date>2015-09-01T08:41:02Z</dc:date>
    <item>
      <title>CSharp SDK dbx.Files.UploadAsync doesn't work</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85523#M2599</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I've installed the CSharp DropBox SDK in a Console App (in part of my CI toolchain, although created in Visual Studio 2013 it is sitting in a Xamarin solution that is built using Jenkins on Mac using .Net&amp;nbsp;v4.0.30319).&lt;/P&gt;
&lt;P&gt;I call the dropbox SDK immediately after successfully copying an iPhone .IPA to a temp directory so that I can upload it to dropbox, however part of the following does not work:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;LogMessage(&lt;/SPAN&gt;" &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;In UploadToDropBox(...)"&lt;SPAN class="s1"&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="s2"&gt;using&lt;/SPAN&gt; (&lt;SPAN class="s2"&gt;var&lt;/SPAN&gt; mem &lt;SPAN class="s3"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;new&lt;/SPAN&gt; &lt;SPAN class="s4"&gt;MemoryStream&lt;/SPAN&gt;(&lt;SPAN class="s4"&gt;Encoding&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;UTF8&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;GetBytes(content)))&lt;/P&gt;
&lt;P class="p2"&gt;{&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;LogMessage(&lt;/SPAN&gt;" &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;In using (var mem = new MemoryStream(Encoding.UTF8.GetBytes(content)))"&lt;SPAN class="s1"&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;try&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;{&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;var&lt;/SPAN&gt; updated &lt;SPAN class="s3"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;await&lt;/SPAN&gt; dbx&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Files&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;UploadAsync(&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;folder &lt;SPAN class="s3"&gt;+&lt;/SPAN&gt; &lt;SPAN class="s5"&gt;"/"&lt;/SPAN&gt; &lt;SPAN class="s3"&gt;+&lt;/SPAN&gt; file,&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s4"&gt;WriteMode&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;Overwrite&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Instance,&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;body: mem);&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;}&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;catch&lt;/SPAN&gt;(&lt;SPAN class="s4"&gt;Exception&lt;/SPAN&gt; ex)&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;{&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;LogMessage(&lt;SPAN class="s2"&gt;string&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Format(&lt;SPAN class="s5"&gt;" &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;ERROR: {0}"&lt;/SPAN&gt;, ex&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Message));&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;}&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;LogMessage(&lt;/SPAN&gt;" &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Processed var updated = await dbx.Files.UploadAsync(...)"&lt;SPAN class="s1"&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;LogMessage(&lt;/SPAN&gt;" &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;: &lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;Exiting&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &lt;/SPAN&gt;using (var mem = new MemoryStream(Encoding.UTF8.GetBytes(content)))"&lt;SPAN class="s1"&gt;);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;}&lt;/P&gt;
&lt;P class="p1"&gt;The first two Log messages get written to my log file, however none of the other messages do, nor does the try-catch throw and cause that message to be written to the log file.&lt;/P&gt;
&lt;P class="p1"&gt;The value in folder is "test", and the value in file is "test.txt", and the value of content is "Hello DropBox".&lt;/P&gt;
&lt;P class="p1"&gt;But the results are not written to dropbox, despite that the folder exists.&lt;/P&gt;
&lt;P class="p1"&gt;Any ideas on how to resolve this CSharp SDK issue?&lt;/P&gt;
&lt;P class="p1"&gt;Anthony&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:40:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85523#M2599</guid>
      <dc:creator>Continuous I.</dc:creator>
      <dc:date>2019-05-29T09:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: CSharp SDK dbx.Files.UploadAsync doesn't work</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85524#M2600</link>
      <description>&lt;P&gt;I suspect that the&amp;nbsp;error is that your path doesn't start with a slash. In API v2,&amp;nbsp;paths should either be empty, meaning the root of&amp;nbsp;the user's Dropbox, or they should start with a slash. So try using "/test" as the value of folder.&lt;/P&gt;
&lt;P&gt;As to why you don't see the exception,&amp;nbsp;my C#&amp;nbsp;async/await knowledge is somewhat limited. Is&amp;nbsp;the&amp;nbsp;containing method marked async? I think from just this snippet of code, it may not be possible to tell if the exception should get caught here or not.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2015 08:41:02 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85524#M2600</guid>
      <dc:creator>Steve M.</dc:creator>
      <dc:date>2015-09-01T08:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: CSharp SDK dbx.Files.UploadAsync doesn't work</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85525#M2601</link>
      <description>&lt;P&gt;Hi Steve, thanks for your tip, I've tried the forward slash but it doesn't work.&lt;/P&gt;
&lt;P&gt;The primary call is essentially straight from the CSharp SDK, which is:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;using&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; (&lt;/SPAN&gt;&lt;SPAN class="s1"&gt;var&lt;/SPAN&gt;&lt;SPAN class="s2"&gt; dbx &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;new&lt;/SPAN&gt; &lt;SPAN class="s4"&gt;DropboxClient&lt;/SPAN&gt;&lt;SPAN class="s2"&gt;(&lt;/SPAN&gt;"My_Key"&lt;SPAN class="s2"&gt;))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;{&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;SPAN class="s1"&gt;await&lt;/SPAN&gt; UploadToDropBox(dbx, &lt;SPAN class="s6"&gt;"/test"&lt;/SPAN&gt;, &lt;SPAN class="s6"&gt;"test.txt"&lt;/SPAN&gt;, &lt;SPAN class="s6"&gt;"Hello Dropbox"&lt;/SPAN&gt;); // tried with /test and&amp;nbsp;just test&lt;/P&gt;
&lt;P class="p4"&gt;}&lt;/P&gt;
&lt;P class="p4"&gt;And the method it calls (exactly from the SDK with a Console.WriteLine(...) removed:&amp;nbsp;&lt;/P&gt;
&lt;PRE class="dbprettyprint literal-block prettyprint lang-None"&gt;async Task Upload(DropboxClient dbx, string folder, string file, string content)
{
    using (var mem = new MemoryStream(Encoding.UTF8.GetBytes(content)))
    {
        var updated = await dbx.Files.UploadAsync(
            folder + "/" + file,
            WriteMode.Overwrite.Instance,
            body: mem);
    }
}&lt;BR /&gt;&lt;BR /&gt;But, as stated, without results.&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Anthony&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Sep 2015 08:56:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85525#M2601</guid>
      <dc:creator>Continuous I.</dc:creator>
      <dc:date>2015-09-01T08:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: CSharp SDK dbx.Files.UploadAsync doesn't work</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85526#M2602</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Would&amp;nbsp;you mind providing your static void Main function? That would be helpful for us to figure out how you make the async call.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2015 09:11:49 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85526#M2602</guid>
      <dc:creator>Qiming Y.</dc:creator>
      <dc:date>2015-09-01T09:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: CSharp SDK dbx.Files.UploadAsync doesn't work</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85527#M2603</link>
      <description>&lt;P&gt;Thanks Qiming, with a slight adjustment to that, the errors are now indeed throwing properly, I'll put my main function here and then the errors:&lt;/P&gt;
&lt;P class="p1"&gt;static void&lt;SPAN class="s1"&gt; Main(&lt;/SPAN&gt;string&lt;SPAN class="s1"&gt;[] args)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;{&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;var&lt;/SPAN&gt; task &lt;SPAN class="s3"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s4"&gt;Task&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Run((&lt;SPAN class="s4"&gt;Func&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;&amp;lt;&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;Task&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;&amp;gt;&lt;/SPAN&gt;)&lt;SPAN class="s4"&gt;Program&lt;/SPAN&gt;&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Run);&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;task&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Wait();&lt;/P&gt;
&lt;P class="p2"&gt;}&lt;/P&gt;
&lt;P class="p3"&gt;static async &lt;SPAN class="s4"&gt;Task&lt;/SPAN&gt;&lt;SPAN class="s1"&gt; Run()&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;{&lt;/P&gt;
&lt;P class="p4"&gt;&lt;SPAN class="s1"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;CIPostBuildTask&lt;SPAN class="s1"&gt; postBuild &lt;/SPAN&gt;&lt;SPAN class="s3"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;new&lt;/SPAN&gt; CIPostBuildTask&lt;SPAN class="s1"&gt;();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="p2"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="s2"&gt;await&lt;/SPAN&gt; postBuild&lt;SPAN class="s3"&gt;.&lt;/SPAN&gt;Run();&lt;/P&gt;
&lt;P class="p2"&gt;}&lt;/P&gt;
&lt;P class="p2"&gt;The following line (which I added to my first post in a try-catch), shows the error that follows:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;var&lt;/SPAN&gt; full &lt;SPAN class="s2"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;await&lt;/SPAN&gt; dbx&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;Users&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;GetCurrentAccountAsync();&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;ERROR: Error in call to API function "users/get_current_account": The given OAuth 2 access token is malformed.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p1"&gt;In addition, the following line throws the following error in it's try-catch statement:&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="s1"&gt;var&lt;/SPAN&gt; updated &lt;SPAN class="s2"&gt;=&lt;/SPAN&gt; &lt;SPAN class="s1"&gt;await&lt;/SPAN&gt; dbx&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;Files&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;UploadAsync(&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;folder &lt;SPAN class="s2"&gt;+&lt;/SPAN&gt; &lt;SPAN class="s3"&gt;"/"&lt;/SPAN&gt; &lt;SPAN class="s2"&gt;+&lt;/SPAN&gt; file,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p2"&gt;&lt;STRONG&gt;&lt;SPAN class="s4"&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/SPAN&gt;WriteMode&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;Overwrite&lt;SPAN class="s2"&gt;.&lt;/SPAN&gt;&lt;SPAN class="s4"&gt;Instance,&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;SPAN class="Apple-converted-space"&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;body: mem);&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;ERROR: Error in call to API function "files/upload": The given OAuth 2 access token is malformed.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2015 14:43:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85527#M2603</guid>
      <dc:creator>Continuous I.</dc:creator>
      <dc:date>2015-09-01T14:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: CSharp SDK dbx.Files.UploadAsync doesn't work</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85528#M2604</link>
      <description>&lt;P&gt;Solved it!&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Qiming&lt;/STRONG&gt; - thanks, your help caused me to realise I'd used the App Key instead of the OAuth 2 Generated Access Token.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Steve&lt;/STRONG&gt; - thanks, indeed I had to preface the folder with a forward slash as you said as with it, it works, and without it, it generates the error (quite a long one but here for posterity):&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Error in call to API function "files/upload": HTTP Header "Dropbox-API-Arg": path: 'test/text.txt' did not match pattern '/.*'&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Thanks Chaps, it was lovely to see the Dropbox toast informing me that the file had been uploaded!&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Anthony&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2015 14:57:32 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/CSharp-SDK-dbx-Files-UploadAsync-doesn-t-work/m-p/85528#M2604</guid>
      <dc:creator>Continuous I.</dc:creator>
      <dc:date>2015-09-01T14:57:32Z</dc:date>
    </item>
  </channel>
</rss>

