OTPCredential.code

Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.

The code property of the OTPCredential interface returns the one-time password.

Syntax

let code = OTPCredential.code;

Value

A string containing the one-time password.

Examples

The below code uses the value of code to complete an input form element. See this code as part of a simple demo.

navigator.credentials.get({
  otp: { transport:['sms'] },
  signal: ac.signal
}).then(otp => {
  input.value = otp.code;
  if (form) form.submit();
}).catch(err => {
  console.log(err);
});

Specifications

Browser compatibility

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari WebView Android Chrome Android Firefox for Android Opera Android Safari on IOS Samsung Internet
code
No
No
No
No
No
No
No
84
No
60
No
14.0

© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/OTPCredential/code