Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to integrate social media into a game I code for -- however many google searches have not been helpful, so my apologies if this is a bad question since I haven't been able to code anything (I don't know where to look!)

Firstly: is it possible to 'reward' a player ingame (the game is NOT facebook hosted or developed) when they share one of our statuses on facebook?

Logically speaking I figure this would require us to have players link their facebook (how? are there any well written examples for a new fb API user?), and then figure out when said user shares, then trigger reward code in game.

Any help on the matter would be wonderful.

share|improve this question
You have quite a few issues being raised in your question. Firstly, I don't recommend taking legal advice from any random user on the Internet. Secondly, specifically discussions about Facebook policies has been discussed on meta and is pretty much regarded as "off-topic". – Lix Mar 12 at 22:52
With regard to the technical issue of "rewards" for sharing - are you talking about clicking the "share" button on a post inside Facebook or a share button within the game? Both are possible but require different levels of permissions. – Lix Mar 12 at 22:54
Well shoot. I wasn't really aiming for a policy question, more of a "Is this possible, and if so, where is the best place to learn so I can get practical with it". I hope that kinda clears it up, but this already has a vote to close so I doubt I'll get an answer. Sorry. – PRPGFerret Mar 12 at 22:54
The post would be hosted on facebook, so the person would have to 'like' the page, and we'd have to figure out how to know who belongs to what account, then go from there – PRPGFerret Mar 12 at 22:55
If you trim down the other stuff, I'm sure that I'll be able to help... Right now your question(s) is mostly off-topic, but one close vote does not a closed question make. – Lix Mar 12 at 22:55
show 1 more comment

closed as not a real question by Mike Christensen, CBroe, hjpotter92, Luc M, Jocelyn Mar 13 at 0:22

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

up vote 1 down vote accepted

Since the action you are looking to monitor happens within Facebook and outside of your game's scope, you will need to implement a Facebook application in order to gain access to a users feed. This is the read_stream permission.

Once you have this permission, you'll be able to query /user_id/feed and get a list of the users feed. Now you can start to sift through the posts on the users feed looking for shared stories. You can filter the shared statuses by specifying the status_type and object_id fields:

USER_ID/feed?fields=id,status_type,object_id

The object_id field that is returned (if at all) will be the page id that the user shared from. Note that not all the posts will be shared from pages, so be prepared for that object_id parameter to be empty (or non-existent).

Once you have a valid object_id that matches your page's id, you can then reward your users.

share|improve this answer
Oh this is excellent information, thank you! – PRPGFerret Mar 12 at 23:23

You can see on the graph api doc, especially the status object, and try with the graph api explorer

You will have to invite the players to like your status. It could be a post too, or your page depending of what you want to reward: an action, a performance, the visit on your game,...

You can also create custom objects and actions

share|improve this answer
I'm trying to upvote this but it says I can't upvote my own post.. lol what? Thanks man, this is exactly what I need. – PRPGFerret Mar 12 at 23:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.