我正在构建一个连接到网页并检索一些数据的应用程序,然后根据检索到的数据,它将检查另一个网页上的数据,然后更新另一个页面。
服务器1:
Server1 Hostname: subdomain.domain.com
Server1 Http Ports: 80, 8245
HTTP/1.1 200 OK
Content-Type: text/html
Server: Server Name
Cache-Control: no-cache
Pragma: no-cache
Content-Length: 105
Connection: close
<html><head><title>Title of page</title></head><body>Page Content</body></html>
服务器2:
Hostname: subdomain2.domain.com
HTTP ports: 80, 8245
HTTPS port: 443
Authentication URL: http://username:password@subdomain2.domain.com/?parameters
GET /folder/file?parameters HTTP/1.0
Host: subdomain2.domain.com
Authorization: Basic base-64-authorization
此外,在server2上的请求之后应该发送一个空行。
我想知道如何使用C#和PHP
来做到这一点