I am uploading video in to a facebook album using the following code . It is giving #353 missing video file error .But the video is available in the given url. Can anyone help me in solving this issue
FB.api('/albumid/videos', 'post', { access_token: GetToken(),
name: 'My video',
source: '@http://mywebsite/video/video.MPG' },
function(response) {
if (!response || response.error) {
alert('Error occured ' + response.error.message);
} else {
alert('Post Id: ' + response.id);
}
});