未通过请求 API 获得响应

发布于 2025-01-10 10:48:45 字数 877 浏览 1 评论 0原文

当我直接传递整数值时,我从 API 得到了正确的响应,但当我通过变量传递整数时,我没有得到任何响应。

# Extarct information of Metadata of Design id-5071431

import requests

url = "https://www.helioscope.com/api/designs/5071431"

payload={}

headers = {

  'access_token': 'API_key',

}

​

response = requests.request("GET", url, headers=headers, data=payload)

# <Response [200]>

des=5071431

# Extarct information of Metadata of Design id-5071431

import requests

url = "https://www.helioscope.com/api/designs/{des}"

payload={}

headers = {

  'access_token': 'API_key',

}

response = requests.request("GET", url, headers=headers, data=payload)

# <Response [500]>

随附的是同一屏幕截图

在此处输入图像描述

在此处输入图像描述

提前致谢

I am getting proper response from API when I am passing integer value directly but I am not getting any response when I am passing integer through variable.

# Extarct information of Metadata of Design id-5071431

import requests

url = "https://www.helioscope.com/api/designs/5071431"

payload={}

headers = {

  'access_token': 'API_key',

}

​

response = requests.request("GET", url, headers=headers, data=payload)

# <Response [200]>

des=5071431

# Extarct information of Metadata of Design id-5071431

import requests

url = "https://www.helioscope.com/api/designs/{des}"

payload={}

headers = {

  'access_token': 'API_key',

}

response = requests.request("GET", url, headers=headers, data=payload)

# <Response [500]>

Attached are the screenshots for the same

enter image description here

enter image description here

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好倦 2025-01-17 10:48:45
  1. response.text 将显示服务器响应正文

  2. {des} 应替换为实际 ID,就像您在第一个请求中所做的那样

当我通过变量传递整数时。

您没有使用 f 字符串将任何变量加载到字符串中,因此它被视为文字。你也可以在最后连接

  1. response.text will show the server response body

  2. {des} should be replaced with an actual ID like you did in the first request

when I am passing integer through variable.

You're not using an f-string for loading any variables into the string, so it's taken as a literal. You could also just concatenate at the end

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文