parse-community / Parse-SDK-dotNET

Parse SDK for .NET, Xamarin, Unity.
http://parseplatform.org
Apache License 2.0
323 stars 261 forks source link

Is this project still alive? #257

Closed jcguarinpenaranda closed 6 years ago

jcguarinpenaranda commented 7 years ago

I have searched through the code how to add my serverURL but i have the impression that after Parse got deprecated this library has not been updated. In that sense, my question is if this project is still alive?

I am doing a small test on Unity but without being able to set my Parse Server's Url there's nothing I can do with the SDK

plyoung commented 7 years ago

I am guessing this..

ParseClient.Initialize(new ParseClient.Configuration()
{
    ApplicationId = "wotever",
    Server = "http://127.0.0.1:1337/parse/"
});

But I am not having any luck with the below code. The task just don't seem to ever complete. I am about ready to move on. Think I'll have a look at Firebase next.

public IEnumerator Test()
{
    Debug.Log("start");
    Task t = ParseCloud.CallFunctionAsync<IDictionary<string, object>>("hello", null);
    while (!t.IsCompleted) yield return null;
    Debug.Log("done");
}

public IEnumerator Register(string email, string pw)
{
    MainGUI.ShowMessage(Strings.Get(Strings._PlsWait));

    var user = new ParseUser()
    {
        Username = email,
        Password = pw,
        Email = email
    };

    Debug.Log("start");

    Task t = user.SignUpAsync();
    while (!t.IsCompleted) yield return null;

    Debug.Log("done");
}

I did get http://localhost:1337/test to work so server runs fine. Got Dashboard installed too. Just the Unity/ .Net SDK I am not getting to work. (Using Unity 5.6)

plyoung commented 7 years ago

Made some progress. At least now I get a "NullReferenceException: Object reference not set to an instance of an object" when I try to make a ParseCloud.CallFunctionAsync call.

Check under Components > Scripts > Parse is ParseInitializeBehaviour. Dump that onto a GameObject and enter your app ID.

[edit] OMG. Just realised the released DLL is over a year old. Check in https://github.com/parse-community/Parse-SDK-dotNET/issues/166 are some builds

jcguarinpenaranda commented 7 years ago

Hello, do you have a working example ?

montymxb commented 6 years ago

@jcguarinpenaranda It lives! Going through issues atm, but expect a new release sometime later this month ;). Expect us to start small, we'll be focusing on core functionality first, native Windows implementations and such. From there we'll work on deving/testing for Xamarin, Unity, etc. Pace won't be fast but it will be moving.