journeycoder
Newbie
- Aug 31, 2014
- 27
- 3
I used google api to upload image to picasa:
But After upload completed i can not get back url with full size. So anybody please Help me How to get Full size Image url after upload on Picasa ?????
Code:
Uri postUri = new Uri(PicasaQuery.CreatePicasaUri(username, "xxxx"));
System.IO.FileInfo fileInfo = new System.IO.FileInfo(file);
System.IO.FileStream fileStream = fileInfo.OpenRead();
PicasaEntry entry = (PicasaEntry)service.Insert(postUri, fileStream, "image/jpeg", file);
fileStream.Close();
But After upload completed i can not get back url with full size. So anybody please Help me How to get Full size Image url after upload on Picasa ?????
Last edited: