我正在尝试生成唯一的 URL,然后在https://goo.gl/中进行检查。我在python中的代码:
import requests
import json
def goo_shorten_url(url):
post_url = 'https://www.googleapis.com/urlshortener/v1/url?key=xxxxxxxxxxxxxxxxxxxx'
payload = {'longUrl': url}
headers = {'content-type': 'application/json'}
r = requests.post(post_url, data=json.dumps(payload), headers=headers)
print r.text
goo_shorten_url('http://www.google.com')
但是我不明白如何修改我的代码和配置令牌以获得这个唯一的 URL