我正在开发一个拥有python rest api client的项目。其余的api是用python编写的,需要进行身份验证。
baseurl: http://localhost:8001/lists
username: restadmin
pass: restpass
现在在python中,我做
client = Client('http://localhost:8001/3.0', 'restadmin', 'restpass')
client.lists
它有效,因为我在另一个文件中列出了python绑定函数。但是当我试图去localhost:8001/3.0/lists
它说:
<error><title>401 Unauthorized</title><description>The REST API requires authentication</description></error>
有人请告诉我为什么我得到这个以及如何在我的浏览器上查看它。
我还想实现类似于python的javascript rest api客户端。我应该如何处理它。