I started using the social plug in. Trying to get facebook sharing to work.
So I set the options to
local options = {
service = “facebook”,
message = “Check out hello Words on the Google Play Store!”,
listener = foo,
url = "https://play.google.com/store/apps/details?id=com.helloagaingames.havochare.Hello_Words&hl=en"
}
And have created a listener foo
function foo(x)
end
So I am wondering… how do you determine what parameters are available for x, and what properties are available for x?
Is event always available? Is there a way to print off what properties are available for event in respect to the
API you are using? I looked through the API reference but do not see the social plugin listed so I am not sure what Im getting back from the listener.