The Facebook web UI allows to upload photos to a note and then use them within the note.
The benefit of this is that the first picture is automatically shown on the timeline preview of the note. I have tried inserting pictures from an album into the note, but they are not shown in the timeline preview.
As far as I know there is no other way of achieving this other than uploading the photos as attachments of the note using the web UI.
So my question is if anyone knows a way of uploading pictures to a note's own photo set using the Graph API or any other programmable means?
Some research I have made:
When you go to the note's edit page and select a picture to see its details, you are taken to a URL like:
it also has other query string params like:
- &op=&view=all&subj=364773266924406&aid=-1&oid=364773266924406
but the link to the picture details still works without them
pid seems to be the picture ID
id is probably an album ID? I uploaded to it, but the picture is not added to the notes pictures and it appears on the timeline as a regular picture.
oid is the ID of the note where the photo is embedded. I have also tried to upload to "/notes/{oid}/photos" but I get an error.
Lastly, if I click on the "go to album" link on the picture details page I get an URL like this:
the "o.364773266924406" number is equal to the ID of the note, If I upload to "/364773266924406/photos" the picture is uploaded as a regular picture and not added to the note.
So in conclusion it seems that notes have an attached album but there doesn't seem to be any way of reaching it with Graph API. I would use any method available as long as it works programatically.