[android-developers] Re: Using Picasa Web Albums Data API in Android

2009-10-07 Thread FEZ (Felix Kratzer)
I'm trying to do something similar (uploading a file using a webform)... But I just cannot find anything about MultiPart handling in the API... ANY hints? FEZ On 24 Sep., 16:05, Christine wrote: > You can use httpclient to access any api. > > On Sep 24, 10:00 am, Raman wrote: > > > I do not

[android-developers] Re: Using Picasa Web Albums Data API in Android

2009-09-23 Thread Aniruddh Bajirao
If you want to get album data and upload pictures to Picasa, you may find the picasaUploadActivity intent useful. It will use the same authenticated token as the phone itself and upload to the associated Picasa account. And you just pass it the content uri for the image. However the source for the

[android-developers] Re: Using Picasa Web Albums Data API in Android

2009-09-23 Thread Sujay Krishna Suresh
Try this snippet. If its wat u need go ahead.. otherwise post back with wat u require apart from this. Intent temp = new Intent(Intent.ACTION_SEND); temp.setType("image/jpeg"); temp.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); temp.putExtra(Intent.EXTRA_STREAM, imageURI); temp.setCompon

[android-developers] Re: Using Picasa Web Albums Data API in Android

2009-09-24 Thread Raman
I do not want to use an existing Activity for Picasa related tasks, like showing the Picasa albums and creating new albums. Rather I want to develop a new application where it would directly interact with Picasa without a third application coming in between. May be, you would have heard of Picasa

[android-developers] Re: Using Picasa Web Albums Data API in Android

2009-09-24 Thread Christine
You can use httpclient to access any api. On Sep 24, 10:00 am, Raman wrote: > I do not want to use an existing Activity for Picasa related tasks, > like showing the Picasa albums and creating new albums. Rather I want > to develop a new application where it would directly interact with > Picasa