I have the following routing:
...
when('/sections/:bookID', {
templateUrl: 'partials/book.html',
controller: 'bookCtrl'
})
...
Where bookID is defined as parameter but it is also encrypted and encoded so the resulting URL looks like:
/sections/9XhNLs0tI%2fmr67rkJtfhaw%3d%3d
The issue is that this routing is not working?
PS: The unencrypted value works just fine. So, I know the routing is working.
The Encoding was made in C# like this:
HttpUtility.UrlEncode(Convert.ToBase64String(encrytedBuffer));
Do you know why the routing does not work this value 9XhNLs0tI%2fmr67rkJtfhaw%3d%3d
it looks fine to me?