有没有可能使用最新的PHP谷歌客户端与代理?
我问,因为在我的公司,我们开始为所有网络应用程序使用代理,而且我找不到任何简单的解决方案:)
有任何建议,建议吗?
答案 0 :(得分:3)
我认为这是最简单的解决方案:
$c = new Google_Client();
$c->setScopes(array('https://www.googleapis.com/auth/userinfo.email'));
//set proxy config for curl io in development enviroment
if(APPLICATION_ENV != "production"){
$io = new Google_IO_Curl($c);
$curloptions = array();
$curloptions[CURLOPT_PROXY] = "proxy-host:3128";
$io->setOptions($curloptions);
$c->setIo($io);
}