How to get Full size Image url after upload on Picasa

journeycoder

Newbie
Joined
Aug 31, 2014
Messages
27
Reaction score
3
I used google api to upload image to 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:
Yeah, i resolved, anybody need utility program upload photos to google picasa, it is free and auto upload, you can contact me or download at journeycoder[dot]com
 
Back
Top