使用DropNet从Dropbox存储用户令牌

时间:2015-05-14 13:12:00

标签: c# .net dropnet

我的应用程序获得Dropbox授权后,我试图存储用户令牌,以便在我打开其他表单(具有拖放功能)时,用户不必授权该应用程序再次,将能够执行上传功能到Dropbox。

我使用DropNet授权Dropbox的课程是:

我宣布了两个属性; public string UserToken { get; set; }public string UserSecret { get; set; }

    string appKey = "APP_KEY";
    string appSecret = "APP_SECRET";

    public bool LinkDrpbox()
    {
        bool dropboxLink = false;

        Authenticate(
           url =>
           {
               var proc = Process.Start("iexplore.exe", url);
               proc.WaitForExit();
               Authenticated(
                   () =>
                   {
                       dropboxLink = true;
                   },
                   exc => ShowException(exc));

           },
           ex => dropboxLink = false);

        if (dropboxLink)
        {
            return true;
        }
        else
        {
            return false;
        }
    }

    private DropNetClient _Client;
    public DropNetClient Client
    {
        get
        {
            if (_Client == null)
            {
                _Client = new DropNetClient(appKey, appSecret);

                if (IsAuthenticated)
                {
                    _Client.UserLogin = new UserLogin
                    {
                        Token = UserToken,
                        Secret = UserSecret
                    };
                }

                _Client.UseSandbox = true;
            }
            return _Client;
        }
    }

    public bool IsAuthenticated
    {
        get
        {
            return UserToken != null &&
                UserSecret != null;
        }
    }

    public void Authenticate(Action<string> success, Action<Exception> failure)
    {
        Client.GetTokenAsync(userLogin =>
        {
            var url = Client.BuildAuthorizeUrl(userLogin);
            if (success != null) success(url);
        }, error =>
        {
            if (failure != null) failure(error);
        });
    }

    public void Authenticated(Action success, Action<Exception> failure)
    {
        Client.GetAccessTokenAsync((accessToken) =>
        {
            UserToken = accessToken.Token;
            UserSecret = accessToken.Secret;

            if (success != null) success();
        },
        (error) =>
        {
            if (failure != null) failure(error);
        });
    }

    private void ShowException(Exception ex)
    {
        string error = ex.ToString();
    }
}

我可以授权我的应用,但不确定如何保存访问令牌。我在app.config文件中假定但不确定。

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:1)

这更像是一个.net问题而不是DropNet特定的事情。

看看这个答案https://stackoverflow.com/a/3032538/75946我不同意使用注册表,但其他2个都很好。

当您启动应用程序并在DropNetClient实例上设置它时,您只需要从存储它的位置加载它。