如何从Firebase短动态链接中获取完整链接?

时间:2019-10-08 14:24:36

标签: java android firebase-dynamic-links

我这里有一个简短的动态链接,我在另一个网站上放置了一个链接 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异常。

0 个答案:

没有答案