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 getting an weird behavior while sharing my link on Facebook. But other services like Twitter, LinkedIn etc are working fine.Here is the URL I'm trying to share .

Code used for sharing is from AddThis.com

But when sharing, giving me scripting error

"Your browser does not support scripting, or you have disabled that feature. To get help, please send us a mail to receive a call back."

Can you please help me debugging what is the problem.

The url generated for sharing on Facebook is as follows...

https://www.facebook.com/sharer/sharer.php?u=http%3A%2F%2Fwww.maerskline.com%2Flink%2F%3Fpage%3Dnews%26path%3D%252Fnews%252Fnews20120217_dup%23.UM8CF1OJGZA.facebook

Please help!! I have been struggling for a week and more.

Regards, Monika

share|improve this question

2 Answers

facebook might have blocked this website in their entire structure. To check if so, try to paste that maerskline.com link in any comment box. If the problem happens in commenting that link to any status update too, then you can use http://goo.gl/ to convert your maerskline.com link to some other innocent looking link that will fool the facebook and allow you to post that link anywhere in facebook.

share|improve this answer

That is not a scripting error, it´s what´s right in your sourcecode. It is also not blocked, else there would be an error message saying so.

I suggest using Open Graph Tags, see here:

http://ogp.me/

After adding some of them (title, description, image, ...) everything will show up correctly. Test here: https://developers.facebook.com/tools/debug

Take a look at the warnings, they tell you which Open Graph tags you should use as minimum. If you don´t include any Open Graph Tags, Facebook will use some text from your page. Unfortunately, the Facebook Linter does not know JavaScript, so it will grab the error message right from your page.

share|improve this answer
We investigated further on this at our end and it does not seem to be scripting error. This is related to https. What we conclude is that the page is delivered to Facebook but for some reason extracts Facebook only the content of the LiveHelp iFrame (withing the content) which states: "Your browser does not support scripting...". We have registered that the page Facebook fetches is returned from the server and there are no errors. Can you help us to know why Facebook is fetching content from the <iframe> tag instead of whole HTML response? – Monika Murmu Dec 19 '12 at 11:17
of course it is not a scripting error, that´s what i wrote. did you try adding open graph tags, like i mentioned? if you add them, facebook will surely use the correct data. – luschn Dec 19 '12 at 13:42
No, we cannot do that because we run on portal. So to implement, it needed a major change. We tried removing the <iframe> and we are able to post the content. But removing <iframe> would not be the solution as the portal needs that. It will be nice if you can tell us why Facebook is fetching content from the <iframe> tag instead of the whole HTML response? – Monika Murmu Dec 20 '12 at 4:34
facebook will fetch anything from the page, if there are no open graph tags. can´t you even put a meta description in? i mean, every page should have that... – luschn Dec 20 '12 at 9:45

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.