Linkin Man 2 Posted April 24, 2017 Caros, como posso transformar este Post curl em url php? curl -i -X POST -H "Content-Type: multipart/form-data" -F "file=@/xxxx/arquivo/teste.jpg" "https://api.mercadolibre.com/messages/attachments?access_token=XXXXXXXXXXXXXXXXX" Tentei o seguinte, ele retorna http 200 mas não traz nenhuma informação: $caminho_file = '@/xxxx/caminho/teste.jpg'; $params = array('access_token' => $_SESSION['access_token']); $body = array('file' => $caminho_file); $response = $meli->post('/messages/attachments' . $body, $params); print_r($response); Retorno: Array ( [body] => stdClass Object ( ) [httpCode] => 200 ) Kind Regards Share this post Link to post Share on other sites
Caros, como posso transformar este Post curl em url php?
curl -i -X POST -H "Content-Type: multipart/form-data" -F "file=@/xxxx/arquivo/teste.jpg" "https://api.mercadolibre.com/messages/attachments?access_token=XXXXXXXXXXXXXXXXX"
Tentei o seguinte, ele retorna http 200 mas não traz nenhuma informação:
Retorno: Array ( [body] => stdClass Object ( ) [httpCode] => 200 )
Kind Regards
Share this post
Link to post
Share on other sites