Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

can anybody give me an example how to create album and upload photos to the facebook albums using java from android device? I found a way how to upload photos one by one to the facebook wall, but not found way to create album and upload photos.

Thank you very much,

share|improve this question
If an answer solved your question, you should accept it. Thats how SO works. – Prizoff Nov 24 '12 at 13:26

1 Answer

Our developer blog has a nice tutorial on how to use the Graph API to upload photos. Although the code is in PHP, you can translate the sample code easily for Java. The relevant part of the tutorial is probably scenario 2: creating a new album and adding a photo.

To create a new album using our Graph API, you first need to have an access token that has the permission publish_stream. Then to create the new album:

Bundle params = new Bundle();
params.putString("name", "My Test Album Name Here");
params.putString("message", "My Test Album Description Here");
mAsyncRunner.request("me/albums", params, "POST", new CreateAlbumListener());

And in your CreateAlbumListener class, grab the newly created album ID in the onComplete() method. Once you have the album ID of the album you just created, to upload photos to that album:

1) Upload local photo (e.g. from gallery), assuming we have a variable data that is the byte array of the photo we wish to upload

Bundle params = new Bundle();
params.putByteArray("photo", data);
params.putString("caption", "Test description here");
mAsyncRunner.request("ALBUM_ID/photos", params, "POST");

2) Upload from remote (e.g. a URL to a photo)

Bundle params = new Bundle();
params.putString("url", "http://www.lolbrary.com/content/454/facebook-cat-9454.jpg");
params.putString("caption", "Cats are awesome");
mAsyncRunner.request("ALBUM_ID/photos", params, "POST");

ALBUM_ID is the variable that stores the album id of the album you just created. You can checkout HackBook, which is a sample app that we created to show you all the different calls you can do with the android SDK.

Let me know if that helps.

share|improve this answer
Thank you very much for the help, – orikoko Aug 17 '12 at 11:59
Please accept my answer if it helped you with your problem so that others can see that it helped. – Jesse Chen Aug 17 '12 at 18:10
Hi Jesse. You helped me a lot, I appreciate it. – orikoko Aug 18 '12 at 10:13
There is a little problem. Can you please tell how to get the created album_id from the response? – orikoko Aug 18 '12 at 10:14
In your CreateAlbumListener, you have to implement the onComplete method. The onComplete method has a String variable called response, parse the response in the onComplete method to extract the album id. Let me know if that helps! – Jesse Chen Aug 19 '12 at 1:56
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.