Not sure if you figured it out yet but with using php and simplexml you can easily extract the user profile image by this...
$feed->icon Below is the entire code I'm using for simplexml... not sure how you would change the persons profile image but this is where it is located.. I'd assume with a put command or something.. haven't done it myself. *$feedURL = "http://picasaweb.google.com/data/feed/api/user/$userid/?kind=photo&access=visible"; $sxml = simplexml_load_file($feedURL); $counts = $sxml->children('http://a9.com/-/spec/opensearchrss/1.0/'); $total = $counts->totalResults; foreach ($sxml->entry as $entry) { $title = $entry->title; $summary = $entry->summary; $gphoto = $entry->children('http://schemas.google.com/photos/2007'); $size = $gphoto->size; $height = $gphoto->height; $width = $gphoto->width; $media = $entry->children('http://search.yahoo.com/mrss/'); $thumbnail = $media->group->thumbnail[1]; /* This is where the profile image is */ echo "<img src=\"" . $sxml->icon . "\"/>\n"; ** /* This will just show the url */ ** echo '<pre>' . print_r($sxml->icon) . '</pre>'; }* Hope this helps On Tuesday, August 14, 2012 3:20:04 AM UTC-4, Bharath Kumaar wrote: > > Thats cool... i ll work on it and post here once i succeeded in what i am > aiming for...... Thanks James > On Monday, August 13, 2012 11:57:06 PM UTC+5:30, James Callahan wrote: >> >> look up PWI picasa webalbum integrator.. its done in javascript with >> jquery.. I tried it out and it is really cool. You may be able to use parts >> of it for what you need... >> It will give you a list of albums with their thumbnails.. and when you >> click one it will display the photos within it. >> >> Maybe you can use the part of the function in just getting the album >> cover. Worth a shot. >> >> Here is a link >> >> http://code.google.com/p/pwi/ >> >> On Mon, Aug 13, 2012 at 1:04 PM, Bharath Kumaar <[email protected] >> > wrote: >> >>> Thanks Mike for your time... >>> >>> >>> On Monday, August 13, 2012 10:28:31 PM UTC+5:30, Mike Erickson wrote: >>> >>>> No, I'm sorry, but the cover photo isn't called out in the API. I can't >>>> think of a good way to sneak around the profile photo issue, sorry. >>>> >>>> -m.e. >>>> >>>> >>>> >>>> On Mon, Aug 13, 2012 at 9:44 AM, Bharath Kumaar <bharathkuma...@a-cti.* >>>> *com> wrote: >>>> >>>>> >>>>> >>>>> On Monday, August 13, 2012 9:54:52 PM UTC+5:30, Mike Erickson wrote: >>>>> >>>>>> Sorry, but I don't believe that functionality is surfaced in the >>>>>> existing APIs. I believe it will be available at some point in the >>>>>> future, >>>>>> but I don't know with any degree of certainty. >>>>>> >>>>>> Thank you, >>>>>> -Mike >>>>>> >>>>>> -m.e. >>>>>> Thanks Mike for your reply.. what i have tried is .. using picasa >>>>>> web services i accessed the profile photos album. now if i can get the >>>>>> cover photo of the album i think i can update the photo.. any option to >>>>>> get >>>>>> the album cover.. >>>>>> >>>>>> On Mon, Aug 13, 2012 at 9:14 AM, Bharath Kumaar < >>>>>> bharathkuma...@a-cti.**com> wrote: >>>>>> >>>>>>> Hi , in our application we are allowing users to sign in using >>>>>>> Google Oauth. Everything is fine. But now we want to add a >>>>>>> functionality >>>>>>> that allows users to change the google profile picture from our >>>>>>> application.. is it possible and if possible which api should i use.. i >>>>>>> have tried using google+ , picasa and profile apis.. thanks guys >>>>>>> >>>>>>> -- >>>>>>> You received this message because you are subscribed to the Google >>>>>>> Groups "Google Picasa Web Albums API" group. >>>>>>> To view this discussion on the web visit >>>>>>> https://groups.google.com/d/**ms**g/google-picasa-data-api/-/**CaS** >>>>>>> M-89dFKEJ<https://groups.google.com/d/msg/google-picasa-data-api/-/CaSM-89dFKEJ> >>>>>>> . >>>>>>> To post to this group, send email to google-pica...@**googlegroups. >>>>>>> **com. >>>>>>> >>>>>>> To unsubscribe from this group, send email to >>>>>>> google-picasa-data-api+**unsubsc**[email protected]. >>>>>>> For more options, visit this group at http://groups.google.com/** >>>>>>> group**/google-picasa-data-api?**hl=en<http://groups.google.com/group/google-picasa-data-api?hl=en> >>>>>>> . >>>>>>> >>>>>> >>>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "Google Picasa Web Albums API" group. >>>>> To view this discussion on the web visit https://groups.google.com/d/* >>>>> *msg/google-picasa-data-api/-/**DyvMuBMMUQYJ<https://groups.google.com/d/msg/google-picasa-data-api/-/DyvMuBMMUQYJ> >>>>> . >>>>> >>>>> To post to this group, send email to google-pica...@**googlegroups.com >>>>> . >>>>> To unsubscribe from this group, send email to google-picasa-data-api+* >>>>> *[email protected]. >>>>> For more options, visit this group at http://groups.google.com/** >>>>> group/google-picasa-data-api?**hl=en<http://groups.google.com/group/google-picasa-data-api?hl=en> >>>>> . >>>>> >>>> >>>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Google Picasa Web Albums API" group. >>> To view this discussion on the web visit >>> https://groups.google.com/d/msg/google-picasa-data-api/-/4tEifKZd244J. >>> >>> To post to this group, send email to [email protected]. >>> To unsubscribe from this group, send email to >>> [email protected]. >>> For more options, visit this group at >>> http://groups.google.com/group/google-picasa-data-api?hl=en. >>> >> >> -- You received this message because you are subscribed to the Google Groups "Google Picasa Web Albums API" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-picasa-data-api/-/XpUnC6wtUSYJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-picasa-data-api?hl=en.
