I'm trying to upload a video using the graph API. (I don't use the legacy REST API since Facebook does not encourage to do so).
Basically I'm following the basic video upload example in Yunnan Wu Platform Updates: Operation Developer Love, where it uses a HTML form to upload the file. Instead I want to do it automatically without user interaction and tried with cURL. My code segment looks like following (which I found in some other post here)
$post_url = "https://graph-video.facebook.com/me/videos?"
. "title=" . $video_title. "&description=" . $video_desc
. "&". $access_token;
$ch = curl_init();
$data[basename($file)] = '@' . realpath("klfaceevo.mp4");
curl_setopt($ch, CURLOPT_URL, $post_url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
$res = curl_exec($ch);
I receive the following.
Method Not Implemented
Invalid method in request
How can I fix this problem?