我有以下问题。
我在Tomcat 9上部署了一个REST服务,我可以通过浏览器发送请求。 例如,
http://localhost:8080/my_app/ping
给了我预期的“Hello world”字符串。
现在,我正在尝试通过Python脚本发送相同的GET请求:
import requests
r = requests.get('http://localhost:8080/my_app/ping')
print(r.content)
收到
"HTTP Status 404 – Not Found" ... "The origin server did not find a current representation for the target resource or is not willing to disclose that one exists".
我该如何解决这个问题? 感谢
ADD:使用curl
的行为相同