If in a web browser I enter:
https://graph.facebook.com/search?q=watermelon
the data returned begins:
{ "data": [ { "id": "100000079215099_345415575486050", "from": { "name": "Synthia Stephen", "id": "100000079215099" },
My question relates to the id field. The value returned contains two numbers separated by an underscore character.
1) I believe the first number (100000079215099) is the id of a facebook user, is this always the case?
2) What does the second number (345415575486050) represent?
3) Once I have the full id (100000079215099_345415575486050) is it possible to use this id in another Facebook Graph API to retrieve the data associated with this id? If so, what would that url look like?