Hi,
I recently migrate from API v1 to API v2.
I use the Dropbox nugget for C#.
Everything was working fine in september (with this new API v2 code) but since today (or the 1st of october) my new code doesn't work.
Here is the code :
using (dbx = new DropboxClient(Token))
{
var full = await dbx.Users.GetCurrentAccountAsync();
string DropBoxName=System.IO.Path.GetFileName(Filename);
await Upload(Filename, "/" + DropBoxName);
}
In fact dbx.Users.GetCurrentAccountAsync(); doesn't return, without any message/error/timeout/exception... Any idea ?