1 Answer
- Newest
- Most votes
- Most comments
0
I think since you're calling the authentication APIs directly, you need to manually record these authentication events to Pinpoint. You can do this by using the record function from the Analytics module. These events you record, will then show on Pinpoint under Analytics of your project.
Check this source: https://docs.amplify.aws/gen1/javascript/build-a-backend/more-features/analytics/record-events/
Relevant content
- asked 4 years ago
- asked 5 years ago
- AWS OFFICIALUpdated 4 years ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 3 years ago
- AWS OFFICIALUpdated a year ago
Is it possible to provide a code example of how to record these auth events? Because I haven't found anything like this in docs. Thank you!
const handleSignUp = async (data) => { try { const { isSignUpComplete, userId, nextStep } = await signUp({ ...data, });