Facebook share: How To?

Monkey Forums/Monkey Programming/Facebook share: How To?

Raul(Posted 2014) [#1]
I want to make that small share button in my app which should post on my wall something like:
"I just scored 10.000 points on this game."

Search the forums and the most recent discussion was here:
http://www.monkey-x.com/Community/posts.php?topic=8379

I understand that I need to create a Facebook application in order to receive an ID and a NAMESPACE. My game will be for ios and android, so no FB. This app is the same as a Facebook game??

Any small tutorial on how to do that, or to point me to the right resources to read?

Thanks,


Alex(Posted 2016) [#2]
This may be late but:

https://www.facebook.com/dialog/feed?app_id="+fbAppID+"&link="+fbAppURL+"&picture="+fbAppLogo+"&name="+ varAppName + "&caption="+varCaption+"&description="+varMessage+"&redirect_uri="+ fbAppURL+"&display=popup

fbAppID = Facebook App ID (no need to integrate login, just create an app in FB dev)
fbAppURL = any URL you want the page redirects after the post is done
fbAppLogo = any image uploaded to your site
varAppName = name of your app (any text)
varCaption = Any text - will appear under the picture
varMessage = Any additional text

However, I noticed, the caption and message texts aren't posted on Facebook. Will look into it, maybe something has changed.