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 am using facebooks graph API to post actions to a users profile depending on what they do on my site (Login, Register, Watch a Video & Rate a video).

When a user rates a video, I currently have it say:

User rated *link_to_video* on *website/app_name*

I would like it to say:

User rated *link_to_video* 5 stars on *website/app_name*

Notice the 5 Stars in the above post.

Is this possible or am I wasting my time searching for an answer?

share|improve this question

1 Answer

up vote 1 down vote accepted

Simply add 5 starts to your title

<meta property="og:title" content="LINK_TO_VIDEO 5 stars" /> 

yes, it will be shown as a part of your link, but I don't think it matters a lot

Another idea is to create five (or whatever your number of maximal stars is) actions which are named

  • rated 5 stars
  • rated 4 stars
  • rated 3 stars
  • rated 2 stars
  • rated 1 star
share|improve this answer
1  
That will work, but please don't do that, it'll make your aggregations and the users news feed look very strange - you should include the 'rating' / stars as a parameter of the action itself – Igy Apr 3 '12 at 17:13
@igy i didnt like the idea of doing this either, bit how do I add the parameter of the action itself? – JustAnil Apr 3 '12 at 20:22
@igy thank you, that's a good idea – Martin. Apr 3 '12 at 20:26
@just I added an idea to my answer – Martin. Apr 3 '12 at 20:27
Not really what im looking for, but I got my answer, Nice workaround tho!.. Thanks! – JustAnil Apr 4 '12 at 9:03
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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