google-photos
Choosing photo using new Google Photos app is broken
Below code is working for me to get content URI on latest Google Photos as well. What i have tried is writing to temp file and return temp image URI, if it has authority in content URI. You can try same: private static String getImageUrlWithAuthority(Context context, Uri uri) { InputStream is = null; if (uri.getAuthority() … Read more
Is there an upload API for Google Photos (photos.google.com)?
By the looks of it Google Photos is based off the same system Google+ handled photos which was through the Picasa Web Albums Data API. EDIT: So I came across this question while trying to develop something using Google Photos. Currently I am working on an application that will transfer stuff from Dropbox over to … Read more