I created the following class and am trying to upload a picture to Picasa directly after an image is taken, somehow I get a result, but the image is not being uploaded. I have set the INTERNET permission, can anybody help:
public class TestcameraActivity extends Activity {
PicasawebService myPicasa;
URL postUrl;
Uri mCapturedImageURI;
String fileName;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
fileName = "temp.jpg";
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, fileName);
values.put(MediaStore.Images.Media.DESCRIPTION, "description");
values.put(MediaStore.Images.Media.DISPLAY_NAME, "display");
mCapturedImageURI = getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra(MediaStore.EXTRA_OUTPUT, mCapturedImageURI);
try{
startActivityForResult(intent, 0);
} catch (Exception e){}
myPicasa = new PicasawebService("Barcelona-Trivia-XL");
try {
postUrl = new URL("https://picasaweb.google.com/data/feed/api/user/bcngamephone@gmail.com?kind=album");
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
myPicasa.setUserCredentials("username@gmail.com", "password");
} catch (AuthenticationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == Activity.RESULT_OK && requestCode == 0) {
String[] projection = { MediaStore.Images.Media.DATA};
Cursor cursor = managedQuery(mCapturedImageURI, projection, null, null, null);
int column_index_data = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
String capturedImageFilePath = cursor.getString(column_index_data);
Uri imageURI = Uri.parse(data.toURI());
Log.e("OnActRes", imageURI+" d "+data+" rc "+requestCode+" resc "+resultCode);
// ...
try {
myPicasa.setUserCredentials("username@gmail.com","password");
} catch (AuthenticationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
URL albumPostUrl=null;
try {
albumPostUrl = new URL("https://picasaweb.google.com/data/feed/api/user/username@gmail.com/albumid/TestAlbum");
Log.d("Result", "URL "+albumPostUrl);
} catch (MalformedURLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
PhotoEntry myPhoto = new PhotoEntry();
myPhoto.setTitle(new PlainTextConstruct("Puppies FTW"));
myPhoto.setDescription(new PlainTextConstruct("Puppies are the greatest."));
myPhoto.setClient("myClientName");
MediaFileSource myMedia = new MediaFileSource(new File(capturedImageFilePath), "image/jpeg");
myPhoto.setMediaSource(myMedia);
Log.d("RESULT"," "+myMedia+" "+myPhoto);
try {
PhotoEntry returnedPhoto = myPicasa.insert(albumPostUrl, myPhoto);
Log.d("Result", "Returned Photo "+returnedPhoto); //I GET A RESULT HERE
} catch (IOException e) {
Log.d("Result", "IO Exception");
// TODO Auto-generated catch block
e.printStackTrace();
} catch (ServiceException e) {
// TODO Auto-generated catch block
Log.d("Result", "Service Exception");
e.printStackTrace();
}
}
}
}