[android-developers] Caught an unsecure API call to Picasa in DDMS, which revealed links to private photos

2011-12-13 Thread Serkan Ozel
So I was doing my daily development at work and noticed a Green catlog line which was made by my Android phone to Picasa https://picasaweb.google.com/data/feed/api/user/[MyPicasaUserName] Now when you call this link, it'll give you an XML feed which also includes links to your private photos -

[android-developers] Re: Caught an unsecure API call to Picasa in DDMS, which revealed links to private photos

2011-12-13 Thread Serkan Ozel
Thank you guys, I think it was a stored cookie which made me believe that the links were still reachable even though I was logged off. Sorry for the sirens. Case closed :/ -serkan On Dec 13, 4:44 pm, Kristopher Micinski krismicin...@gmail.com wrote: On Tue, Dec 13, 2011 at 4:38 PM, Serkan

[android-developers] Finishing Browser

2010-05-12 Thread Serkan Ozel
Hello Guys, I need to launch the Browser from my application (cannot do the WebView - it has to be browser), and once I'm done with the browser, is there a way to close the Browser and the user back to the application programatically? The problem is that user will probably press back or home

[android-developers] Re: Finishing Browser

2010-05-12 Thread Serkan Ozel
Hello Kostya, Yes I tried the same thing, javascript to close the browser, I thought it would at least ask me if I want to close it - and that didn't work. On May 12, 3:58 pm, Kostya Vasilyev kmans...@gmail.com wrote: 12.05.2010 23:50, Serkan Ozel ?: I hopped that a button in the HTML

[android-developers] Re: Finishing Browser

2010-05-12 Thread Serkan Ozel
Setting the FLAG_ACTIVITY_CLEAR_TOP flag didn't work, Gyan. I'm looking at other flags see if they work, an/or change the behavior of the back button. Back button does take me back to my application and ends the browser only if I have one page to show but the reality is that I do have few html

[android-developers] Re: Inserting Photo to Contacts

2009-07-24 Thread Serkan Ozel
); People.setPhotoData(getContentResolver(), uri, stream.toByteArray ()); } On Jul 24, 1:22 am, quill quill...@163.com wrote: Use Contacts.People.setPhotoData to insert a photo. On Jul 23, 9:21 pm, Serkan Ozel serkano...@gmail.com wrote: Hello Friends, I was wondering if anyone has been