我们在Javascript中有以下代码:
var speakMe = function (text) {
var key, lang, url, audio;
key = "key=1234567890";
lang = "sv_se";
url = "http://api.ttsengine.com/api/read?" + key + "&lang=en_us&voice=male1&speed=100&audioformat=ogg&oggbitrate=100&text=" + text;
audio = new Audio(url);
audio.play();
};
运作良好。但是,我想掩盖关键。为此,我建议使用PHP代理脚本。
我找到this proxy但我不知道如何实现它。如何通过此代理获取我通常获得的数据?
答案 0 :(得分:1)
根据代理脚本的文档。你可以调用你的脚本并传递一个url
参数,然后它将返回内容。您还必须将mode=native
设置为另一个url参数。
// > ba-simple-proxy.php?url=http://example.com/&mode=native
//
// Response:
//
// > <html>...</html>
//
// Topic: Notes
//
// * Assumes magic_quotes_gpc = Off in php.ini