我在开发控制台中创建了我的GAE应用程序。我用它来使用appcfg更新它。
现在我支持socks5代理,并且无法找到设置appcfg的方法。
有人可以回答所有步骤吗? 可以使用appcfg或gcloud工具
非常感谢
答案 0 :(得分:3)
您可以通过设置var info='DEP/S10 DEST/3W5 ALTN/1S2 RMK/TESTING, PLEASE IGNORE TYP/HOMEBUILT';
var div=info.split('/');
var indicator=[];
indicator.push(div[0]);
var content=[];
var curr;
for(i=1;i<div.length-1;i++){
curr=div[i];
content.push(curr.substring(0,curr.lastIndexOf(' ')));
indicator.push(curr.substring(curr.lastIndexOf(' ')+1));
}
content.push(div[div.length-1]);
console.log(indicator);
console.log(content);
或HTTP_PROXY
环境变量在代理后面使用accpcfg或gcloud。例如,在Windows上:
HTTPS_PROXY
和linux / osx:
set HTTP_PROXY=http://cache.mycompany.com:3128
set HTTPS_PROXY=http://cache.mycompany.com:3128
以下是一些关于此的文档:
https://cloud.google.com/appengine/docs/python/tools/uploadinganapp#Python_Using_an_HTTP_proxy