Inviseble_Demon
Мой дом здесь!
- Регистрация
- 11 Дек 2008
- Сообщения
- 478
- Реакции
- 377
- Автор темы
- #1
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
curl_setopt ($ch, CURLOPT_POSTFIELDS, $data);
Content-Type: application/x-www-form-urlencoded
Connection: keep-alive
Posting 423 bytes...
token=1282379407-68ca3a21e519cb08f38b
entry_xid=6a00d8341c73cc53ef00e551ddab758833
captcha_code=rgc748
X-Requested-With: XMLHttpRequest
Content-Type: text/javascript+json
Content-Transfer-Encoding: binary
Connection: keep-alive
Posting 312 bytes...
{"method":"Comments.Preview","params":[{"author":"dfghjk","email":"sdfgh@fgh.iuy
hgtf","url":"edfg.uytgf","text":"bdx gxdf xf hxf hdfg h er s gsg jerg hdukm
es gu,efgsb xbt w dt nb wul, eru l, d hn wefwrhdtnws dyjuk serf heft th sdwr
hdtmn artnfesrtjrthbrg ndty","entry_xid":"6a00d83452d6c969e200d83452d6ce69e2
"}]}
$ch = curl_init('http://poster/php.php');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, 'qqqq');
echo curl_exec ($ch);
curl_close ($ch);
$data = '{"method":"Comments.Preview","params":[{"author":"dfghjk","email":"sdfgh@fgh.iuy
hgtf","url":"edfg.uytgf","text":"bdx gxdf xf hxf hdfg h er s gsg jerg hdukm
es gu,efgsb xbt w dt nb wul, eru l, d hn wefwrhdtnws dyjuk serf heft th sdwr
hdtmn artnfesrtjrthbrg ndty","entry_xid":"6a00d83452d6c969e200d83452d6ce6 9e2
"}]}';
curl_setopt ($ch, CURLOPT_POSTFIELDS, $data);
Почему бред на счёт заголовка?) если он отсылается, то лишним он уж точно не будет. курл вообще по минимуму генерит заголовки, часто серверу этого не хватает. Так что отправь X-Requested-With: XMLHttpRequest- это обязательно, Content-Type: text/javascript+json Content-Transfer-Encoding: binary- желательно.Я когда тестил то тупо так пробовал.
PHP:$ch = curl_init('http://poster/php.php'); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_POST, 1); curl_setopt ($ch, CURLOPT_POSTFIELDS, 'qqqq'); echo curl_exec ($ch); curl_close ($ch);