0
votes

Is it possible to use Facebooks graph API to tag people in an album? Note: I don't want to tag individual photos, but an album on the whole.

I have experimented with the facebook Graph API explorer and have found that the POST request to tag a facebook user in a photo does not work when you substitute the photo's id with an albums. It returned

{
  "error": {
  "message": "Unsupported post request.", 
  "type": "GraphMethodException", 
  "code": 100
}

}

Please Note: My question is not a duplicate of this question as my questions are about tagging albums NOT photos.

1

1 Answers

5
votes

No, there's no way to tag users in albums.
You can't do that in facebook as a normal user, as far as I'm aware, so why would it be possible via the api?
When you see users tagged in albums, it's just facebook aggregating the photo tags.

Also, if you look at the Photo object documentation, you'll see that it has the Tags connection, on the other hand the Album object does not have a similar connection.