如何在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);
}
`
任何帮助,将不胜感激。