Integrate user credential input from an image
- 19 Oct 2024
- 1 Minute to read
- DarkLight
Integrate user credential input from an image
- Updated on 19 Oct 2024
- 1 Minute to read
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Mobile Authenticator Studio supports the input of user credentials for authenticator license activation requests as an image, either as a QR code or a Cronto image.
The content of the image must be generated using the Secure Messaging SDK Server 4.6.1 or later by calling the credential message generation functionality.
Java
public static String generateCredentialsMessage(String registrationIdentifier, String authorizationCode,
String activationPassword, String userIdentifier) throws MessageSDKException
.NET
public static String GenerateCredentialsMessage(String registrationIdentifier, String authorizationCode,
String activationPassword, String userIdentifier)
The image can be generated using the Image Generator SDK 4.3.5 or later by calling either the QR code generation API or the Cronto image API.
Java
public static BWQRCodeResponse generateBWQRCode(int imageSize, String inputValue, int errorCorrectionLevel) throws ImageGeneratorException
public static BufferedImage generateCrontoSign(int squareSize, String inputValue) throws ImageGeneratorSDKException
.NET
public static BWQRCodeResponse GenerateBWQRCode(int imageSize, String inputValue, int errorCorrectionLevel)
public static Bitmap GenerateCrontoSign(int squareSize, String inputValue)
Was this article helpful?