Noesis Posted August 4, 2014 Share Posted August 4, 2014 The following piece of POST header details to output to a file in JSON format returns the following error: [/code]$params = array("user" => $enjin_id);$query = http_build_query($params);$contextData = array("method" => "POST", "header" => "Connection: close\r\n" . "Content-Length: " . strlen($query)."\r\n", "content" => $query );$context = stream_context_create(array ( "http" => $contextData )); $result = file_get_contents($url, FALSE, $context);[/code] error: file_get_contents(): Content-type not specified assuming application/x-www-form-urlencoded Can anyone advise what I need to do to ensure that the process is correctly set, of which I assume I need to declare a MIME type and where it is needed? Quote Link to comment Share on other sites More sharing options...
Jacques1 Posted August 4, 2014 Share Posted August 4, 2014 The client needs to tell the server the type of the request, just like the server needs to tell the client the type of the response. So you need a Content-Type header in the context array. The type is indeed application/x-www-form-urlencoded. Quote Link to comment Share on other sites More sharing options...
mogosselin Posted August 4, 2014 Share Posted August 4, 2014 Here's an example of what your 'contextData' array should contain in the header: $contextData = array( 'method' => 'POST', 'header' => "Content-type: application/x-www-form-urlencoded\r\n [other header stuff here...]", 'content' => $postdata ); Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.