bugthesystem / FireSharp

An asynchronous cross-platform .Net library for Firebase
The Unlicense
696 stars 147 forks source link

authWithPassword API #29

Open robomotic opened 8 years ago

robomotic commented 8 years ago

Hello there, I am using your library since today and is wonderful. I was looking also to use the custom authentication protocol from my client as they show in the javascript library:

var ref = new Firebase("https://<YOUR-FIREBASE-APP>.firebaseio.com");
ref.authWithPassword({
  email    : "bobtony@firebase.com",
  password : "correcthorsebatterystaple"
}, function(error, authData) {
  if (error) {
    console.log("Login Failed!", error);
  } else {
    console.log("Authenticated successfully with payload:", authData);
  }
});

Are you planning to implement this?

oransel commented 8 years ago

+1

ngducnghia commented 8 years ago

I'm looking for a way to authenticate client via Firesharp. This would be awesome

robomotic commented 8 years ago

I am going to publish it then . The problem is that it will break very soon with the new API they released like 3 days ago I guess ....

Sent from my iPhone

On 24 May 2016, at 07:28, ngducnghia notifications@github.com wrote:

I'm looking for a way to authenticate client via Firesharp. This would be awesome

— You are receiving this because you authored the thread. Reply to this email directly or view it on GitHub

allnightcoder commented 8 years ago

Did you publish this somewhere? I'm also interested in this. Thanks robomotic