can you find any bug bug in my code or any other way to upload file in snapchat api
i want to upload image in snapchat api and after upload video using chunk.can anyone help me ?
thank you for your supported in advanced.
$ch = curl_init(); if (function_exists('curl_file_create')) { $cFile = curl_file_create($imagePath); } else { $cFile = '@' . realpath($imagePath); } $post = array( 'file' => $cFile); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_PROGRESSFUNCTION, 'CURL_callback'); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); $uploadMediaResponse = curl_exec($ch); if (curl_errno($ch)) { $msg = curl_error($ch); } curl_close($ch); [/code] can you find any bug bug in my code or any other way to upload file in snapchat api i want to upload image in snapchat api and after upload video using chunk.can anyone help me ? thank you for your supported in advanced.