提问人:Roguejedi 提问时间:11/10/2023 最后编辑:Roguejedi 更新时间:11/10/2023 访问量:24
尝试使用输出(进入列表),然后使用列表字段
Trying to work with a output (into a list) and then working with list fields
问:
我从带有response.json的GET创建一个列表,其中每行都包含'type': 'url': 'name': 'id':
每个“id”:然后都有其他数据,我可以使用新的 GET 操作检索。
但是,当我进行用户选择时......我不能让其余的工作。
response = requests.request("GET", url, headers=headers, params=querystring, verify=False)
r = response.json()
number=1
for i in r['items']:
print (f"{number} - {i['name']}")
number += 1
# User selection of which rule to dive into
rule = int(input("Enter your desired rule number: "))
# Build URL for GET based on user selection
url = f"https://%s//api/policies/%s/rules" % ipaddr,rule
response = requests.get(url, headers=headers, verify=False)
失败,因为第二个 URL 未正确构建:.../api/policies/rule/rules HTTP/1.1 404 None
其余的到这里都可以工作。
尝试了不同的for循环以从用户选择中找到值,但没有正确
答: 暂无答案
评论
%s
%rule
url
...../api/policies/
/rules