如何在 speechConfig.m 中添加凭据,这是一个简单的语音示例应用ATT演讲api?
`/** Unobfuscates the OAuth client_id credential for the application. **/
NSString* SpeechOAuthKey(void)
{
#error Add code to unobfuscate your Speech API credentials, then delete this line.
return MY_UNOBFUSCATE(my_obfuscated_client_id);
}
/** Unobfuscates the OAuth client_secret credential for the application. **/
NSString* SpeechOAuthSecret(void)
{
#error Add code to unobfuscate your Speech API credentials, then delete this line.
return MY_UNOBFUSCATE(my_obfuscated_client_secret);
}
`
任何帮助都将不胜感激。
答案 0 :(得分:0)
如果您只想使用未经模糊处理的凭据(不安全)运行代码,只需注释掉“#error”行并返回您的门户网站应用密钥和密钥字符串。
当您准备好生产应用程序时,您应该调查您最喜欢的安全例程,以取消混淆将存储在您的应用程序中的密钥和秘密,并将其包装在返回未混淆的纯文本密钥的方法中/来自您的代码附带的混淆密钥/秘密的秘密。
如果您仍需要更多帮助,请在developer.att.com门户网站的“support->登录门票”下登记门票。