mirror of
https://github.com/fergalmoran/nukeitter.git
synced 2025-12-22 09:51:03 +00:00
16 lines
497 B
C#
16 lines
497 B
C#
using Microsoft.AspNetCore.Authentication;
|
|
using Microsoft.AspNetCore.Authentication.Twitter;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Nukitter.Web.Controllers;
|
|
|
|
[ApiController]
|
|
[Route("[controller]")]
|
|
public class UserController : ControllerBase {
|
|
[HttpGet("twitter")]
|
|
public async Task TwitterSignIn() {
|
|
await HttpContext.ChallengeAsync(TwitterDefaults.AuthenticationScheme, new AuthenticationProperties {
|
|
RedirectUri = "https://nukeitter.dev.fergl.ie:5001/profile"
|
|
});
|
|
}
|
|
} |