📜  Python|如何使用 Bitly API 缩短长 URL

📅  最后修改于: 2022-05-13 01:57:04.677000             🧑  作者: Mango

Python|如何使用 Bitly API 缩短长 URL

Bitly 用于以编程方式缩短、标记、共享或检索链接中的数据。

在本文中,我们将了解如何使用 Bitly API 缩短 URL。下面是一个使用 Bitly API 缩短 URL 的工作示例。

第 1 步:使用 git 安装 Bitly API
git clone https://github.com/bitly/bitly-api-python.git

使用以下命令进入文件夹:
cd bitly-api-python

注意:如果使用 pip 命令安装不起作用:

File "/usr/local/lib/python3.5/dist-packages/bitly_api/__init__.py", line 1, in 
from bitly_api import Connection, BitlyError, Error
  
ImportError: cannot import name 'Connection'

如果已经使用 pip 安装,请卸载 bitly-api:

pip uninstall bitly_api

第 2 步:在 Python 的文件夹中安装模块:

python setup.py install

注意:使用删除源代码(因为我们现在不需要它):

cd../
rmdir bitly-api-python-master


第 3 步:获取“Bitly 用户名和 API 密钥”登录到 bit.ly 帐户,然后前往此处获取。如果需要进一步的帮助,可以去这里。


步骤#4:现在创建一个文件shorturl.py并编写以下代码:

import bitly_api
  
API_USER = "your_username"
API_KEY = "your_API_Key"
  
b = bitly_api.Connection(API_USER, API_KEY)
  
# Replace this with your Long URL Here
longurl = www.google.com    
response = b.shorten(uri = longurl)
  
# Now let us print the Bitly URL
print(response)

步骤#5:运行文件“shorturl.py”。


参考: https://dev.bitly.com/v4_documentation.html