I'm trying to create a new route for my angular 2 application... The url is the callback from the spotify API after user grant permissions to my app
this is an example of the call back:
I tried this:
const routes: Routes = [
{ path: 'callback/code/:code/state/:state', component: CallbackComponent }
];
And this:
const routes: Routes = [
{ path: 'callback?code=:code&state=:state', component: CallbackComponent }
];
But I cant get the routing works... I always get this message:
Uncaught (in promise): Error: Cannot match any routes. URL Segment: 'callback' Error: Cannot match any routes. URL Segment: 'callback'