I'm trying to find a way to use DropNet with generated access token but can't find solution. Following code throws exception and says "Access token not found".
var client = new DropNetClient("App Key", "Secret");
client.UserLogin = new UserLogin { Token = "Generated Access Token" };
client.GetFile(...);
Any thoughts ?