本文整理了Java中com.yubico.client.v2.YubicoClient.setWsapiUrls()
方法的一些代码示例,展示了YubicoClient.setWsapiUrls()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。YubicoClient.setWsapiUrls()
方法的具体详情如下:
包路径:com.yubico.client.v2.YubicoClient
类名称:YubicoClient
方法名:setWsapiUrls
[英]Configure what URLs to use for validating OTPs. These URLs will have all the necessary parameters appended to them. Example : {"https://api.yubico.com/wsapi/2.0/verify"}
[中]配置用于验证OTP的URL。这些URL将附加所有必要的参数。例如:{”https://api.yubico.com/wsapi/2.0/verify"}
代码示例来源:origin: Yubico/yubico-java-client
String in = options.get(OPTION_YUBICO_WSAPI_URLS).toString();
String l[] = in.split("\\|");
this.yc.setWsapiUrls(l);
代码示例来源:origin: org.apereo.cas/cas-server-support-yubikey
@RefreshScope
@Bean
@ConditionalOnMissingBean(name = "yubicoClient")
public YubicoClient yubicoClient() {
val yubi = this.casProperties.getAuthn().getMfa().getYubikey();
if (StringUtils.isBlank(yubi.getSecretKey())) {
throw new IllegalArgumentException("Yubikey secret key cannot be blank");
}
if (yubi.getClientId() <= 0) {
throw new IllegalArgumentException("Yubikey client id is undefined");
}
val client = YubicoClient.getClient(yubi.getClientId(), yubi.getSecretKey());
if (!yubi.getApiUrls().isEmpty()) {
val urls = yubi.getApiUrls().toArray(ArrayUtils.EMPTY_STRING_ARRAY);
client.setWsapiUrls(urls);
}
return client;
}
内容来源于网络,如有侵权,请联系作者删除!