我这里有一个简短的动态链接,我在另一个网站上放置了一个链接
https://mywebsite.com/
现在当我点击这个
https://example.page.link/YQ1q
短链接,我直接打开我的应用程序,我要
https://mywebsite.com/
当我打开我的应用程序时。
有可能吗?
我已经尝试过此代码
private void getFullLink(String postPath) throws Exception{
final URL url = new URL(postPath);
final HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setInstanceFollowRedirects(false);
final String location = urlConnection.getHeaderField("location");
Log.d("appLinkTag", "getFullLink: "+location);
}
但它会引发null异常。