0

I would like to provide links to a website with the credentials already within the link. The link is:

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

The credentials are:

Username = AllStarUser
Password = FiveStarPassword

I have tried

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

and

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

but these don’t work. Any suggestions?

unor
  • 82,883
  • 20
  • 183
  • 315

2 Answers2

0

This is a POST form (method="post"). The form data has to be enclosed in the body of the HTTP request.

If it were a GET form (method="get"), you could enclose the form data in the URL, which is specified in the header of the HTTP request.

See also:

unor
  • 82,883
  • 20
  • 183
  • 315
0

If this was a "get" -

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

would be correct.

unor
  • 82,883
  • 20
  • 183
  • 315