rgregg / microsoft-account-winforms

Simple Microsoft Account Login project for Windows Forms
MIT License
8 stars 4 forks source link

No token generated #1

Open sfm2222 opened 5 years ago

sfm2222 commented 5 years ago

This method is not generating any tokens neither I can view the login form.

using MicrosoftAccount.WindowsForms;

public async void Authenticate()
{
  string accessToken = await MicrosoftAccountOAuth.LoginOneTimeAuthorizationAsync("client_id", 
    new string[] { "wl.signin", "wl.basic" });
}
ShayneRC commented 4 months ago

Hi @sfm2222, I forked this repo here and made some modifications to work with the Microsoft Identity Platform instead. I have the other methods working except this one. Did you manage to get this one working?