The local oauth2 provider still needs A LOT of love. But the general oauth2 workflow works. The http api client needs an option to disable the authentication things and we need to switch to the local storage for storing access, refresh and timestamp for the client
7 lines
159 B
C#
7 lines
159 B
C#
namespace Moonlight.Shared.Http.Responses.OAuth2;
|
|
|
|
public class InfoResponse
|
|
{
|
|
public string Username { get; set; }
|
|
public string Email { get; set; }
|
|
} |