使用凭证创建URL

时间:2019-01-15 15:28:46

标签: url html-form url-parameters

我想提供一个链接到网站的链接,其中包含凭据。链接是:

https://mychart.covh.org/MyChart/

凭据为:

用户名= AllStarUser
密码= FiveStarPassword

我尝试过

https://mychart.covh.org/MyChart/?Username=AllstarUser,Password=FiveStarPassword

http://mychart.covh.org/Mychart/logincheck.asp?login=AllStarUser&password=FiveStarPassword

但是这些不起作用。有什么建议吗?

2 个答案:

答案 0 :(得分:0)

这是一个POST表单(method="post")。表单数据必须包含在HTTP请求的正文中。

如果它是GET表单(method="get"),则可以将表单数据放在URL中,该URL在HTTP请求的标头中指定。

另请参阅:

答案 1 :(得分:0)

如果这是“获取”-

https://mychart.covh.org/MyChart/logincheck.asp?Login=AllStarUser&Password=FiveStarPassword  

是正确的。