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 have just seen the buttons on StackExchange sites for Facebook and Twitter status updates. I was wondering how SE is implementing this?

I found this excellent post http://amirrajan.net/Blog/asp-mvc-and-facebook-single-sign-on that shows how to sign in and out of facebook in MVC.

But SE didn't even ask me to sign in, I was logged into FB and it got that. I assume it does the same with Twitter.

Also I don't know if it is a design thing or standard but the popup boxes are really nice, is this something that FB and Twitter provide?

Thanks

share|improve this question

1 Answer

up vote 1 down vote accepted

After looking around it was actually simple, just a link, here's an example of how to post status updates to Facebook and Twitter:

<a href="http://www.facebook.com/connect/prompt_feed.php?&message=Stackoverflow%20is%20Awesome%20from%20http://www.stackoverflow.com" target=_blank onclick="window.open(this.href, this.target,'height=500px,width=400px'); return false">Share on Facebook</a>

<a href="http://twitter.com/home?status=Stackoverflow is Awesome" target=_blank onclick="window.open(this.href, this.target,'height=400px,width=500px'); return false">Tweet about us</a>
share|improve this answer

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.