Embedding website to facebook. (Error code: ssl_error_rx_record_too_long) - facebook

I created a facebook application with a page. But when i'm accessing the application it gave me the error as stated in the title
I hope someone could help me with this.
Thanks.

Related

Facebook link preview not showing for a phpBB3 forum post

I have this forum running on phpBB3 forum software. It is working fine by itself. But when I try to add a forum post link on facebook, it does not show preview of the page. When I tried this with facebook debugger (https://developers.facebook.com/tools/debug/), it shows me RNF error (HTTP 404) for my post because it does not append required parameters to the URL.
This is what I see on the facebook debugger page -
Scrape Information
Response Code 404
Fetched URL http://mysite.tld/forums/viewtopic.php?f=9&t=25
Canonical URL http://mysite.tld/forums/viewtopic.php?f=9&t=25
Final URL http://mysite.tld/forums/viewtopic.php
Is there a way to tell facebook to consider the query parameters of the URL as well?
I did try adding og:XXX tags in the header but it didn't help in any way and I continue to see 404 errors in facebook debugger.
I do not think adding tags is a problem because I tried this URL in facebook debugger and it could feth the title and all other details correctly for this URL.
https://www.phpbb.com/community/viewtopic.php?f=72&t=2120397
And I see that these forums do not have any face og:XXX tags here.
What might be causing problem for my forums and how can I fix it?
Any pointers, inputs would be highly appreciated!
TIA,
- Manish
I have already searched the questions here, and didn't find any pointer. I have already done my homework regarding facebook debugger and link preview, so not sure why it has been voted down.
I have figured it out. As it turned out - the bots didn't have the cookie set and hence were getting HTTP 404 response (a possible bug in custom style: fresco). Once I realized that this problem was due to cookies, I edited all the bots (ACP >> General >> Spiders/Robots) to use default phpBB style prosilver. Once that was fixed, facebook started showing link previews properly!

wrong site description when post new status on LinkedIn

I have a strange problem, in my website I use HibrydAuth to share status with Facebook, Twitter and LinkedIn.
All runs fine but I have a wrong description for the site in the LinkedIn page. An image could explain better than a lot of words, but I can't post images so, please, try to use a bit of imagination: this is a shared post from my web site
link to the website page
text shared from the website page
Here I have the link to my web site
here I would have the description of the web site
but I have the footer line of the web site
So my question is: how or where I can set the right description?
I checked in the LinkedIn account without result and the HibrydAuth library don't gives me options to set it.
Thank you for your help
Paolo

How to change Facebook's shared title and message?

I'm new to Facebook Sharing API. When I put the Facebook Share button in my website, both the message and the title are the URL. Here's the screenshot:
There's even no thumbnails even though there's plenty of pictures in the page.
I have seen other pages that automatically use the first paragraph as the Facebook's message
Is there any specific site layout that I must follow?
Note: I'm using AddThis, so I don't think I can change the code
Thanks
The problem solved when I uploaded the site on Online server. Maybe the API has problem retrieving data from Localhost.
Cheers :)

Addthis Facebook Share

having problems with facebook share with the AddThis bar which is driving me crazy.
I've set the og url etc as suggested by the support team but it takes FOREVER to connect to facebook - all I receive is a message saying 'connecting to facebook'....I've put the URL into the facebook debug and all fine.
Anyone got any ideas? I've contacted AddThis support team days ago and no response :-/
It sounds like either a problem on Facebook's end or a problem on your end when connecting to Facebook. Have you tried using the plain Facebook Like button from Facebook to see if that's the problem and not AddThis? You can get that button here: https://developers.facebook.com/docs/reference/plugins/like/
Also, if the Facebook URL debugger says your site is working it's probably set up correctly, just running slow.

Post a link to a Facebook Application page with an application access token

I've been trying to get my Django application to post all new news stories to the application's facebook page. It works posting to /feed, but if I try to post to /links with the access token given like this, I get the following error:
facebook.GraphAPIError: (#282) Requires extended permission: share_item
Surely I should be able to post to the application page of my application using this access token? What am I doing wrong?
Hi Ben i got the same error , but i didnt understand what is wrong, i use php curl to post data to my facebook page, i have token and it says i have permisson to share item but i cant.
what should i do ?
that was my question and finaly i solved it.
Even if you have the permissons you have to have an extended permisson like "manage_page" so to get this, you should enter this url :
https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=manage_pages&response_type=token
and than no errors ;)
After looking through the code in the Python-SDK for Facebook, I worked this out: you have to use the put_wall_post function with the link supplied in a dictionary as shown in the source.
I hope this helps someone in the future!