One month down in 2025: How are your resolutions coming along? Check out how to get back on track here.
Forum Discussion
kryuchAlex
7 years agoNew member | Level 2
DropBoxLogin
Hello everyone!
Well, I'm beginner at programming. So, can anyone tell what " CS0619 'DropboxLogin.DropboxLogin(string, string, bool, bool)" is an old version: 'Please use an overloads with a return url.' "it exactly means?
- Greg-DB
Dropbox Staff
[Cross-linking for reference: https://stackoverflow.com/questions/49308642/file-manager-for-dropbox-in-c-sharp ]
I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with:
- the name and version of the platform and SDK/library you are using
- the steps to reproduce the issue
- the relevant code snippet(s)- kryuchAlexNew member | Level 2
1)
.NET Framework 4.5using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Nemiro.OAuth;
using Nemiro.OAuth.LoginForms;2)
3) Well, the part of the code, in which I use this constuctionprivate void GetAccessToken()
{
var login = new DropboxLogin("n1d21hsifzp1ye5", "n1d21hsifzp1ye5", true, true);
login.Owner = this;
login.ShowDialog();
if (login.IsSuccessfully)
{
Properties.Settings.Default.AccessToken = login.AccessToken.Value;
Properties.Settings.Default.Save();
}
else
{
MessageBox.Show("error...");
}
}- Greg-DB
Dropbox Staff
Thanks! It looks like you're referring to using Nemiro.OAuth.LoginForms, which is made by a third party, so I'm afraid I can't offer support for it. This error is coming from that library, not the Dropbox API itself. I recommend referring to the documentation for that library, or opening an issue for it.
About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.5,949 PostsLatest Activity: 37 minutes ago
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X or Facebook.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!