I have found this policy API:
https://developer.roblox.com/en-us/api-reference/function/PolicyService/GetPolicyInfoForPlayerAsync
When called, it returns a dictionary with the table “AllowedExternalLinkReferences” as an entry.
This table will be an array of strings each mentioning a platform the user is allowed to view external links to. Note that on the linked API page above that Twitter is not mentioned in the example.
When I call the function myself on my own account I get the following response:
["AllowedExternalLinkReferences"] = ▼ {
[1] = "Discord",
[2] = "YouTube",
[3] = "Twitch",
[4] = "Facebook"
}
I know my account is allowed to view Twitter links because I can see them on my games page
So my question is: How can I properly check if a user is allowed to be shown an in-game link/handle to my Twitter? Is there another API, or is it simply not allowed while Facebook, Twitch, YouTube, and Discord links are?