I'm getting ILMessageFilterError.networkURLUnauthorized returned in a message filter extension when calling deferQueryRequestToServer().
Googling for people who have had the same error, they didn't include the associated domain in the containing app. However I have added that.
The server is set up at https://something.com:443, it has an apple association file located at https://something.com:443/.well-known/apple-app-site-association
I have added associated domains to the app and the app extension of: messagefilter:something.com?mode=developer</string> webcredentials:something.com?mode=developer</string>
Side question 1: are both needed or just the messagefilter? Side question 2: should the domain include the port :443?
The server isn't publicly hosted hence I've appended ?mode=developer on the end as per the documentation.
The extension's info.plist has ILMessageFilterExtensionNetworkURL added as something.com
Question 3: Does this need the port adding too?
With everything set up according to the documentation, apart from the questions above, what might be the cause of getting networkURLUnauthorized returned?