mastodon.zunda.ninja is one of the many independent Mastodon servers you can use to participate in the fediverse.
Zundon is a single user instance as home of @zundan as well as a test bed for changes of the code.

Administered by:

Server stats:

1
active users

この例からいろいろQRコードを作ってIIJ SmartKeyに登録してみました。世の中のTOTPはだいたい6桁か8桁ぽい。
https://github.com/google/google-authenticator/wiki/Key-Uri-Format#examples

左から、桁数指定なし(6桁になった)
$ echo -n 'otpauth://totp/Example:alice@google.com?secret=JBSWY3DPEHPK3PXP&issuer=Example' | qrencode -o qr.png

digits=8を指定(8桁になった。こんな狭いの初めてみた!!)
$ echo -n 'otpauth://totp/Example:alice@google.com?secret=JBSWY3DPEHPK3PXP&issuer=Example&digits=8' | qrencode -o qr.png

digits=10を指定(QR code scan errorと表示して登録しない)
$ echo -n 'otpauth://totp/Example:alice@google.com?secret=JBSWY3DPEHPK3PXP&issuer=Example&digits=10' | qrencode -o qr.png

この他、digits=6だと6桁として登録でき、digits=7も登録しないようです。