我的Google App脚本项目所需的专有IP地址

时间:2018-06-19 20:48:45

标签: javascript google-apps-script static-ip-address

我在脚本中使用以下代码:

var urlAllCurrencyPairsPrice ="https://api.binance.com/api/v1/ticker/24hr";

var allPairs = UrlFetchApp.fetch(urlAllCurrencyPairsPrice);

var jsonAllPairs = JSON.parse(allPairs); 

由于Google使用共享IP地址,因此我从Binance服务器收到一条错误消息,指出我已经超出了请求限制。我发送了一张票,他们回答说我需要一个专用IP地址。如何在Google App脚本中获取和使用它?

1 个答案:

答案 0 :(得分:0)

AFAIK Google不会为Google Apps Script项目提供静态IP地址,但您可以自己检查Google Apps Script official documentation,只是为了确保

一个替代方法是开发一个独立于Apps脚本的应用程序,以获取Binance API,并要求您的Internet服务提供商分配一个专有IP地址,然后使用Apps脚本将获取的数据传递给您的Apps Script项目API。