get id from deeplink
protected void onCreate(@Nullable Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.your_view);
if (getIntent() != null && getIntent().getData() != null)
{
//parse your data here,
//it's the deeplink you want "https://www.example.com/..."
}
}