Twitter

Not available in Community Edition.

To enable login with Twitter OAuth authentication, you can use the New-UDAuthenticationMethod cmdlet to allow users to enter their Twitter credentials to login to your dashboard.

First, you need to register your application with Twitter. You can follow the directions here.

When registering your application, the callback URL should be: http(s)://<server:port>/signin-twitter

Next, you need to call New-UDAuthenticationMethod and specify the AppId, AppSecret and Provider name.

$Method = New-UDAuthenticationMethod -AppId 1234 -AppSecret Abc123 -Provider Twitter
$LoginPage = New-UDLoginPage -AuthenticationMethod $Method

Last updated