我正在使用Microsoft发言人识别API来识别和验证用户的语音。 但是,每次刷新页面时,所有已注册的配置文件都将丢失。我需要再次使用我的声音注册。
您可以参考此github代码Link to code
一切都很好。有没有办法将它存储在天蓝云上。以下是上述链接中的函数,该函数在数组中存储配置文件ID:
var Profile = class { constructor (name, profileId) { this.name = name; this.profileId = profileId;}};
var VerificationProfile = class { constructor (name, profileId) { this.name = name; this.profileId = profileId; this.remainingEnrollments = 3}};
var profileIds = [];
var verificationProfile = new VerificationProfile();