dtdetu Posted November 30, 2008 Share Posted November 30, 2008 hello i am making a curl script to post some data but it doesnt work the page doesnt accept my post, i checked the site with http headers and it shows these informations when i post something with my browser; X-Requested-With: XMLHttpRequest Accept: application/json, text/javascript, */* is it possible to post the data with curl , i am using only these options in curl CURLOPT_USERAGENT CURLOPT_URL CURLOPT_REFERER CURLOPT_FOLLOWLOCATION CURLOPT_POST CURLOPT_SSL_VERIFYPEER CURLOPT_FAILONERROR CURLOPT_COOKIEJAR CURLOPT_RETURNTRANSFER thanks Link to comment https://forums.phpfreaks.com/topic/134856-curl-question/ Share on other sites More sharing options...
rhodesa Posted November 30, 2008 Share Posted November 30, 2008 try adding this option: curl_setopt($ch, CURLOPT_HTTPHEADER, array ( "Content-Type: text/javascript")); Link to comment https://forums.phpfreaks.com/topic/134856-curl-question/#findComment-702289 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.