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.

The following link is for sharing a page on twitter:

http://twitter.com/share

Is there a similar option for Facebook, that doesn't require javascript?

I know about http://facebook.com/sharer.php, but that requires a get parameter to be inserted manually (which I'm not going to do), or with javascript (which doesn't fit my situation).

share|improve this question

4 Answers

You can use

<a target="_blank" href="http://www.facebook.com/sharer/sharer.php?u=#url">Share</a>
share|improve this answer
This is the right answer. – Marcelo Delgado Feb 8 at 1:44

You can use the Feed URL "Direct URL" option, as described on the Feed Dialog page:

You can also bring up a Feed Dialog by explicitly directing the user to the /dialog/feed endpoint:

  https://www.facebook.com/dialog/feed?  
  app_id=123050457758183&
  link=https://developers.facebook.com/docs/reference/dialogs/&
  picture=http://fbrell.com/f8.jpg&
  name=Facebook%20Dialogs&
  caption=Reference%20Documentation&
  description=Using%20Dialogs%20to%20interact%20with%20users.&
  redirect_uri=http://www.example.com/response`

Looks like they no longer mention "sharing" anywhere in their docs; this has been replaced with the concept of adding to your Feed.

share|improve this answer
But it is not possible to access that dialog without registering an App ID? – Eli 2 days ago

How to share content: https://developers.facebook.com/docs/share/

You have to choose use the deprecated function without JS, and check every day, or follow the way use JS and have fun.

share|improve this answer

http://facebook.com/sharer.php is deprecated

You have a few options (use the iframe version):

http://developers.facebook.com/docs/reference/plugins/like/

http://developers.facebook.com/docs/reference/plugins/send/

https://developers.facebook.com/docs/reference/plugins/like-box/

share|improve this answer
These all require javascript, right? – Web_Designer Feb 2 '12 at 22:46
1  
(use the iframe version) – DMCS Feb 2 '12 at 22:49
This is not really what I'm looking for. I just want to use an anchor element. – Web_Designer Feb 3 '12 at 0:38
Sorry, then you're out of luck. It's either Javascript or iFramed. – DMCS Feb 3 '12 at 3:17
1  
I'm saying that if the user has JavaScript disabled, then they won't be able to share the page on Facebook. I was just wondering if there was a similar link like twitter.com/share but for facebook. – Web_Designer Apr 19 '12 at 6:56
show 2 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.