使用 requests.post() 代替 requests.get() 并将您的参数移动到表单编码数据中。例如,而不是拥有 theme=Integrated+Pathway+Cluster 在URL中,做
requests.post()
requests.get()
theme=Integrated+Pathway+Cluster
payload = { 'theme': 'Integrated+Pathway+Cluster' } requests.post(final_url, data=payload)
(除掉 theme 来自URL的参数)。在解决错误之前,您可能会使用URL中的大量参数执行相同的过程。
theme