长网址转短网址
准备工作
获取新浪API及其API的source
环境
1. Python3.7
2. requests
3. json
4. tkinter(不做UI可不要)
核心
https://api.t.sina.com.cn/short_url/shorten.json?source=XXXXX&url_long=XXXXX
返回值
[{"url_short":"http://t.cn/EyGscwA","url_long":"https://www.tomtony.top","type":0}]
结合tkinter做个简单的UI
1 | import requests |