1

私はC#とWindows Phone 7の開発に不慣れで、Dropnet APIを使用しようとすると、エラーが発生します。

using DropNet;

namespace Hello
{

public partial class App : Application
{
    public PhoneApplicationFrame RootFrame { get; private set; }

    public static DropNetClient DropNetClient { get; set; }

    public App()
    {

        InitializeComponent();

        InitializePhoneApplication();

        DropNetClient = new DropNetClient("api key", "secret");
//I've correct app key and secret inserted here

        DropNetClient.GetTokenAsync((userLogin) =>
        {
            //Dont really need to do anything with userLogin, 
//DropNet takes care of it for now
        },
    (error) =>
    {
        //Handle error
    });

        var url = DropNetClient.BuildAuthorizeUrl();
//getting error here


    }
}

私が得ているエラーは

ArgumentNullException was unhandled
Value cannot be null
Parameter name: userLogin

http://dkdevelopment.net/what-im-doing/dropnet/に従って、コードは機能するはずです。助けてください。

4

1 に答える 1

0

あなたが提供したリンクから引用:

_client = new DropNetClient("API KEY", "API SECRET", "USER TOKEN", "USER SECRET");
// OR
_client = new DropNetClient("API KEY", "API SECRET");
_client.UserLogin = new UserLogin { Token = "USER TOKEN", Secret = "USER SECRET" };

UserLoginの初期化がありません。

于 2012-04-16T15:30:35.987 に答える