Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我登录到一个网站,它问我“调用我们的 API,我们会给你回电”。结构是“/users/:id/apply”。我想知道如何进入这种类型的网站,这可能需要我使用我的令牌作为密码检查基本身份验证。
如果结构是“/users/:id/apply”,您可以使用您的 id 调用:
例如:您的用户是 Alladin,您的密码是“芝麻开门”
使用:/users/Aladdin/apply
对于基本身份验证,将其添加到您的标题中:
授权:基本 QWxhZGRpbjpvcGVuIHNlc2FtZQ== Base64("Aladdin:open sesame") = "QWxhZGRpbjpvcGVuIHNlc2FtZQ=="