0

What should be the specified route if my url is https://test.fa.dk/avpi/p1/suite/applink/des212321

I use a $cordovaDeepLinks.route('avpi.p1.suite.applink') It does not work . Can anyone please correct the route ?

user581157
  • 1,327
  • 4
  • 26
  • 64

1 Answers1

0
$cordovaDeeplinks.route({
                        '/avpi/p1/suite/applink/:applinkId': {
                            target: '/*/avpi/p1/suite/applink',
                            parent: 'products'
                        }
                    })

seems to work.

user581157
  • 1,327
  • 4
  • 26
  • 64