gpt4 book ai didi

python - 使用 bit.ly v4(从 bit.ly v3 迁移)和 python 3.7 和 bitlyshortener 包缩短长 URL

转载 作者:行者123 更新时间:2023-11-28 21:32:41 25 4
gpt4 key购买 nike

我确实有一些使用 bit.ly API v3 来缩短 URL 响应的教程代码。我想将此代码迁移到 v4 API,但我不明白如何设置正确的 API 端点。至少我认为这是我的错误,API 文档很难理解和适应我,因为我是初学者。

我有 2 个文件要处理:

  1. bitlyhelper.py(这需要迁移到 bit.ly API v4)
  2. views.py

这是与 URL 缩短相关的相关代码。

bitlyhelper.py

import requests
#import json

TOKEN = "my_general_access_token"
ROOT_URL = "https://api-ssl.bitly.com"
SHORTEN = "/v3/shorten?access_token={}&longUrl={}"


class BitlyHelper:

def shorten_url(self, longurl):
try:
url = ROOT_URL + SHORTEN.format(TOKEN, longurl)
r = requests.get(url)
jr = r.json()
return jr['data']['url']
except Exception as e:
print (e)

View .py

from .bitlyhelper import BitlyHelper

BH = BitlyHelper()

@usr_account.route("/account/createtable", methods=["POST"])
@login_required
def account_createtable():
form = CreateTableForm(request.form)
if form.validate():
tableid = DB.add_table(form.tablenumber.data, current_user.get_id())
new_url = BH.shorten_url(config.base_url + "newrequest/" + tableid)
DB.update_table(tableid, new_url)
return redirect(url_for('account.account'))
return render_template("account.html", createtableform=form, tables=DB.get_tables(current_user.get_id()))

代码在使用 v3 API 时工作正常。

我尝试了几种 API 端点组合,但无法正常工作。

例如,简单地更改版本号是行不通的。

SHORTEN = "/v4/shorten?access_token={}&longUrl={}"

如果有人可以帮助设置正确的 API 端点,那就太好了。

这是 API 文档:https://dev.bitly.com/v4_documentation.html

这是我认为的相关部分:

enter image description here

最佳答案

import requests

header = {
"Authorization": "Bearer <TOKEN HERE>",
"Content-Type": "application/json"
}
params = {
"long_url": form.url.data
}
response = requests.post("https://api-ssl.bitly.com/v4/shorten", json=params, headers=header)
data = response.json()
if 'link' in data.keys(): short_link = data['link']
else: short_link = None

首先,您要使用不记名 token 创建请求 header 。确保也设置内容类型。设置标题后,您必须提供要缩短的网址。

数据变量包含您的 201 请求。

关于python - 使用 bit.ly v4(从 bit.ly v3 迁移)和 python 3.7 和 bitlyshortener 包缩短长 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55985635/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com