К примеру у нас есть такой код..,вернее запрос :
Такой вопрос - откуда мне брать эти все значения ? например как :
'Accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
'Accept-Language', 'ru'
'Content-Type', 'application/x-www-form-urlencoded'
'User-Agent', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)'
'Proxy-Connection', 'Keep-alive'
:whistle:
Код:
Local $oHTTP = ObjCreate('WinHttp.WinHttpRequest.5.1')
$oHTTP.Open($sType, $sRequestURL)
$oHTTP.setTimeouts(5000, 5000, 15000, 15000)
$oHTTP.SetRequestHeader('Accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8')
$oHTTP.SetRequestHeader('Accept-Language', 'ru')
$oHTTP.SetRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
$oHTTP.SetRequestHeader('User-Agent', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)')
$oHTTP.SetRequestHeader('Host', $sRequestURL)
$oHTTP.SetRequestHeader('Proxy-Connection', 'Keep-alive')
$oHTTP.Send($sSendData)
$oHTTP.WaitForResponse
Return $oHTTP.ResponseText
Такой вопрос - откуда мне брать эти все значения ? например как :
'Accept', 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'
'Accept-Language', 'ru'
'Content-Type', 'application/x-www-form-urlencoded'
'User-Agent', 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)'
'Proxy-Connection', 'Keep-alive'
:whistle: