I am able to upload photos to Picasa using c# api, but when I try to uplaod videos it throws 403 forbidden error. Why so?
"System.Net.WebException: The remote server returned an error: (403) Forbidden.\r\n at System.Net.HttpWebRequest.GetResponse()\r\n at Google.GData.Client.GDataRequest.Execute()
Code is as below
PicasaEntry entry = (PicasaEntry)service.Insert(feedUri, fileStream, ContentType(FileExtension), fileInfo.Name);
No error is thrown when image gets uploaded, its throwing error for video only. I have tried uploading 3gp, mp4 formats of around 20 MB
Thanks.