I have an Angular app which I want to secure using AWS Cognito. I initially started using the package angular-oauth2-oidc
which worked great, I just gave it a few details (issuer, client_id etc) and was up and running.
I'm now looking at implementing Amplify but am finding the examples are doing much more than I want. The examples and quick start all involve creating resources which I don't want, I just want to redirect to the hosted UI and get a token on response.
Can I use Amplify just to handle the logging in (using hosted UI) and the token? I shouldn't need to create any new resources, my applications aren't hosted in AWS, I just want to use the authentication side of things.
Thanks