-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AmplifyTotpSetup component renders broken image for QR code #7241
Comments
Can you please try passing in the current authenticated Wherever you return the UI: return (
<AmplifyAuthenticator >
- <AmplifyTotpSetup headerText="My Custom TOTP Setup Text" slot="totp-setup" />
+ <AmplifyTotpSetup headerText="My Custom TOTP Setup Text" slot="totp-setup" {...{user}} />
</AmplifyAuthenticator>
)
`` |
It still renders a broken image instead of the QR code. If I remove the |
I am seeing this same issue using vue.js. I was unable to get it to work with the above recommendation. |
@HarrisonJackson this may be helpful to you. After digging in a bit I found that amplify-js uses stencil.js to compile a single code base to general components that can be used by vue, angular, react. The issue I found was that I was unable to pass in any object (i.e. CognitoUser) to the vue.js offers This does not work: <amplify-totp-setup>
issuer="My Issuer"
:user="user"
</amplify-totp-setup> This works: <amplify-totp-setup>
issuer="My Issuer"
:user.prop="user"
</amplify-totp-setup> |
In case it is useful to anybody, here is what I did as a temporary workaround for a custom issuer in TOTP setup until #7522 is merged: const MyAuthenticatorWithCustomTotpIssuer: React.FC = () => {
<AmplifyAuthenticator>
<CustomTotpSetup />
</AmplifyAuthenticator>
}
const CustomTotpSetup: React.FC = () => {
// This component is a bit of a hack because slots are currently not working properly in the Amplify UI,
// until this gets merged: https://github.com/aws-amplify/amplify-js/pull/7522
// Because the TOTP component makes a request to AssociateSoftwareToken on mount, the default component makes
// this request and is then immediately replaced by this component. This leads to two requests. So we delay this
// second request by one second so that it doesn't clash with the first one and always happens afterwards, which
// should lead to the correct QR code being displayed.
const [user, setUser] = React.useState<CognitoUserInterface | undefined>();
const [displayComponent, setDisplayComponent] = React.useState<boolean>(false);
React.useEffect(() => {
return onAuthUIStateChange((nextAuthState, authData) => {
if (authData && nextAuthState === AuthState.TOTPSetup) {
setUser(authData as CognitoUserInterface);
} else {
setUser(undefined);
}
});
}, []);
React.useEffect(() => {
if (user) {
const timeout = setTimeout(() => setDisplayComponent(true), 1000);
return () => clearTimeout(timeout);
} else {
setDisplayComponent(false);
}
}, [user])
return (
<span slot="totp-setup">
{displayComponent ? (
<AmplifyTotpSetup issuer={'My Custom Issuer'} user={user} />
) : <div>Loading...</div>}
</span>
);
} |
Hi, #7522 should fix this issue. This is now on the |
I just tested with
I can confirm that it mostly fixed my issue when customising TOTP setup using You still need to provide the This does not work, and the TOTP setup page does not display a QR code at all. It's because the
This does work:
|
Yes, that is the expected behavior -- I should have clarified. You need to pass the user object manually because the custom component is outside |
That being said, I see that having to pass |
Thanks, with that as expected behaviour then AmplifyTotpSetup is fixed as far as I can tell! It may be good to show how to get the One option to reduce the complexity for developers would be if amplify just exported something like a
This actually contains a bug which I've opened a separate issue for #7613, where |
When using Vue and the following format, it attempts to associateSoftwareToken on creation which means that an error toast is displayed as soon as the component is loaded onto the screen. I can manually specify the user, but it's too late because it's already run the setup code without the user. <amplify-authenticator>
<amplify-sign-in
slot="sign-in"
hide-sign-up
username-alias="email"
/>
<amplify-totp-setup
slot="totp-setup"
header-text="Setup Multi-Factor Authentication App"
issuer="AnIssuer"
:user.prop="user"
/>
</amplify-authenticator> |
I was having the same issue before #7522 was merged. However there is no stable npm release for it yet. If you're using |
@jssuttles sorry for the late reply, I just got here searching for a solution.
Tricky thing to do, I think they need to fix that, or al least improve the documentation because the |
This issue has been automatically locked since there hasn't been any recent activity after it was closed. Please open a new issue for related bugs. Looking for a help forum? We recommend joining the Amplify Community Discord server |
Describe the bug
The QR Code image for TOTP Setup fails to render if
AmplifyTotpSetup
is used inAmplifyAuthenticator
To Reproduce
Steps to reproduce the behavior:
<AmplifyAuthenticator >...</AmplifyAuthenticator>
<AmplifyTotpSetup slot="totp-setup" />
childExpected behavior
QR Code renders correctly with no overrides, with issuer override, with header text override, etc
Code Snippet
Screenshots
Working if you don't use the

AmplifyTotpSetup
component:Broken with no overrides

<AmplifyTotpSetup slot="totp-setup" />
Broken with overrides

<AmplifyTotpSetup headerText="My Custom TOTP Setup Text" slot="totp-setup" />
The text was updated successfully, but these errors were encountered: