@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
也没有帮助有人可以帮忙吗?