0

I'm testing a timeline app I just made.

I'm using Graph API Explorer for testing.

I tested the next URL:

https://graph.facebook.com/10150691128476714

where 10150691128476714 is the id of the activity I made through my app.

It returns the next values:

{
  "id": "10150691128476714", 
  "from": {
    "name": "Moisés Briseño Estrello", 
    "id": "719621713"
  }, 
  "start_time": "2012-04-26T07:22:00+0000", 
  "end_time": "2012-04-26T07:22:00+0000", 
  "publish_time": "2012-04-26T07:22:00+0000", 
  "application": {
    "name": "appname", 
    "namespace": "appname", 
    "id": "367747679937600"
  }, 
  "data": {
    "objectname": {
      "id": "10150825002710211", 
      "url": "https://young-planet-1642.herokuapp.com/AMLO.html", 
      "type": "appname:objectname", 
      "title": "TItle"
    }
  }, 
  "type": "appname:actionname", 
  "likes": {
    "count": 0, 
    "can_like": true, 
    "user_likes": false
  }, 
  "comments": {
    "count": 0, 
    "can_comment": true
  }
}

I wonder if the referral (fb_action_ids) value is also stored in here or where I can find it?

Thanks in advance :)

1 Answers1

0

ID of the action is the fb_action_ids value, i.e. fb_action_ids = 10150691128476714.

athspk
  • 6,722
  • 7
  • 37
  • 51
Denys Popov
  • 1,040
  • 12
  • 14