为什么要禁止Google URL Shortener提出请求

时间:2017-11-24 20:43:27

标签: google-url-shortener

@staticmethod
def _google_url_shortener(original_url):
    try:
        data = json.dumps({'longUrl': original_url})
        result = requests.post(conf.GoogleURL, headers={
            'Content-Type': 'application/json'}, data=data)
        shortened_url = result.json()['id']
        return shortened_url
    except Exception as e:
        print('err {}'.format(e))
        return original_url

我正在使用谷歌URL Shortener来缩短我的网址,从谷歌,它说每天1,000,000个请求,不幸的是,我发出2500多个请求后得到403错误。即使我将请求TPS降至0.5

也没有帮助

有人可以帮忙吗?

enter image description here

0 个答案:

没有答案