Using ADFS with IIS

So, I’m trying to enabled ADFS for my dashboard. I’ve been using Windows Auth, but its quirky. Works fine on my desktop, but the next person’s desktop it doesn’t. Chrome needs to be configured for windows auth, etc etc. We use ADFS 3.0, and I’ve setup my relying party trust based on the doc. Can’t seem to get this to work. It just loops trying to hit a page called “login-page” /login-page

i’m running SAML tracer, and its not even getting to my ADFS server.

GET https://corptechdev.my.domain/
GET https://corptechdev.my.domain/main.f2d62da654956d044bb1.bundle.js
GET https://corptechdev.my.domain/api/internal/dashboard
GET https://corptechdev.my.domain/login-page
GET https://corptechdev.my.domain/api/internal/dashboard
GET https://corptechdev.my.domain/login-page
GET https://corptechdev.my.domain/api/internal/dashboard
GET https://corptechdev.my.domain/login-page
GET https://corptechdev.my.domain/api/internal/dashboard
GET https://corptechdev.my.domain/login-page
GET https://corptechdev.my.domain/api/internal/dashboard
GET https://corptechdev.my.domain/login-page

$Auth = New-UDAuthenticationMethod -MetadataAddress ‘https://sts.my.domain/FederationMetadata/2007-06/FederationMetadata.xml’ -Wtrealm ‘https://corptechdev.my.domain
$LoginPage = New-UDLoginPage -AuthenticationMethod @($Auth) -passthru -AuthorizationPolicy @($AdminPolicy)

My Start-UDDashboard has -wait -allowhttpforlogin

I still have IIS set to Windows Authentication, web.config token forwarding is set to true.
IIS is version 8.
Running UD 2.8.2 (licensed)
I’m obviously missing something, but can’t figure out what.

Thanks.

V.