Skip to main content
August 30, 2013
Question

iOS GoViral (Milkman class) - what are the returned properties?

  • August 30, 2013
  • 1 reply
  • 746 views

Hi guys

I've set up the Facebbok login for my app using the GoViral class.

Just wondering if there is a list somewhere of what you can access, and how, when listening to events?

For example, I'm using the requestMyFacebookProfile() method to retrieve their unique user ID, but I have no idea how to access the ID via the returned data once it gets to...

private function onFacebookEvent(e:

GVFacebookEvent):void
{
}

I can't see a list of the properties you can access in the docs.

Cheers for taking a look.

This topic has been closed for replies.

1 reply

Inspiring
September 3, 2013

It returns a GVFacebookEvent object, what you need to do is to find that class on your docs (docs/as3doc/all-classes).

If you need more information (like how is formed the JSON received) just read the Facebook Api documentation.

September 3, 2013

Thanks mate - the JSON in Facebook API is the clue that I think I was missing.