I'm trying to retrieve the data from a PUT request.
Currently I have it working with the below code:
parse_str(file_get_contents("php://input"), $parsedArray);
But this seems to only be supported with x-www-url-encoded and not the standard form-data, is there a work around that I've missed?
If it's any addition I have the following headers set on all requests to my API:
header("Access-Control-Allow-Origin: *");
header("Access-Control-Allow-Methods: *");
header("Access-Control-Allow-Methods: OPTIONS, GET, POST, PUT, DELETE");
header("Access-Control-Allow-Headers: Authorization");
header("Content-Type: application/json");
If more info is needed i can provide it, not too sure what else could be effecting this?
Cheers in advance, Jamie