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.

I am creating a new album using Facebook's Graph API and JavaScript SDK. When creating a new album with a description (message) and name, special characters are being encoded. However, when I try to encode the characters, they don't get decoded once the album is created. Has anyone else come across this issue?

JavaScript

/** Example One: Facebook encodes characters **/
var albumName = "Album Name";
var albumDesc = "Description with áéíóú";
FB.api("/me/albums", "post", {message:albumDesc, name:albumName}, function(res) {
     albumID = res.id;
     uploadPhotoToAlbum(albumID);
});

/** Example Two: Facebook does not decode characters **/
var albumName = "Album Name";
var albumDesc = "Description with %C3%A1%C3%A9%C3%AD%C3%B3%C3%BA";
FB.api("/me/albums", "post", {message:albumDesc, name:albumName}, function(res) {
     albumID = res.id;
     uploadPhotoToAlbum(albumID);
});

/** Example Three: Facebook does not decode characters **/
var albumName = "Album Name";
var albumDesc = "Description with áéíóú";
FB.api("/me/albums", "post", {message:albumDesc, name:albumName}, function(res) {
     albumID = res.id;
     uploadPhotoToAlbum(albumID);
});
share|improve this question

1 Answer

up vote 0 down vote accepted

For anyone else who may have this issue, I found that it was due to the file encoding. After encoding the file as UTF-8, "Example One" worked as expected.

share|improve this answer

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.