UWPアプリで短縮URLの展開をしているのですが、goo.glやbit.lyは問題ないものの、t.coだけ展開できません。

        try
        {
            WebRequest req = WebRequest.Create(uri);

            using (WebResponse res = await req.GetResponseAsync())
            {
                string realUrl = res.ResponseUri.AbsoluteUri;
                Debug.WriteLine(realUrl);
                return true;
            }
        }
        catch (Exception ex)
        {
            Debug.WriteLine(ex);
            return false;
        }

エラーの内容は次のとおりです。

例外がスローされました: 'System.Net.WebException' (mscorlib.ni.dll の中)
System.Net.WebException: An error occurred while sending the request.
The text associated with this error code could not be found.

A redirect request will change a secure to a non-secure connection
---> System.Net.Http.HttpRequestException: An error occurred whilesending the request. 
---> System.Runtime.InteropServices.COMException: The text associated with this error code could not be found.

どうしたら解決できるかわかる方いらっしゃらないでしょうか?よろしくお願いします。