I'm searching for a way to embed an Iframe into a Facebook post on a user wall.
I know we can do this using a flash app and the open graph API but I have seen it done using an HTML Iframe on the wall of Soundcloud on Facebook (https://www.facebook.com/soundcloud?fref=ts).
When you link a page from soundcloud and then launch the player from the wall it opens an iframe containing the player.
I don't know if it's a feature developped only for Soundcloud or if any developper can do the same.
Soundcloud is a Facebook Open Graph Music whitelisted partner. That's how they're doing this...
i think this a feature developed by facebook.
You can't see any special meta tags associated to iframe in soundcloud page.
Related
On facebook you can see who watced your videos, and make retargeting, dark post etc. This is because the user is logged into facebook, and facebook tracks it.
But what if I embed the facebook video on a blog eg., does the tracking continues, or do I need to implementen a facebook tracking pixel on the blog aswell before the tracking on the video can continue, and retargeting is possible?
Found the answer... yes, facebook does track when using embedded videos.
Read link 1 & link 2
I am trying to create a website in which when a Facebook user share the page url in facebook it should get embedded as an iframe rather than a link. How can i do this?
Is this possible?
I have embedded a YouTube video on the index page of my website. I have a Facebook share button to share my page. I want the FB post to embed the YouTube video that's on my site but I can't get it to work. I was able to do it with twitter by using the player card. How can I can my YouTube video to embed on my FB post that is auto shared from my site?
Thanks in advance!
You can't do that.
If you check even the facebook share on youtube.com, the videos are not embedded in the posts.
I'm able to see the open graph post in facebook web newsfeed but not able to see same post in mobile facebook newsfeed? What can be the reason ?
Thanks in advance!
After some research i concluded the below things:
Facebook don't allow "Open Graph" on mobile site or on the mobile app. Just to reduce the traffic. It seems that some algorithms are working which prevent this post for the mobile sites.
So if "Open Graph" story/post would only be visible on Facebook web site and that is in the current activity log first and after some time on User's Facebook wall post.
I am fetching the posts of my app page using FB graph api and displaying them in ios app webview. I have a share button and it uses facebook sharer.php to share a post.
Now, my problem is that after sharing or cancel, the user is sent to facebook page and not to my web page.
I tried FB dialog feed which is supposed to solve this issue, but, FB dialog feed does not allow sharing of pictures hosted in FBCDN server .
<?php
$shareurl="http://www.facebook.com/dialog/feed?app_id=".$appid."&link=".urlencode($link)."&picture=".urlencode($pictureUrl)."&name=".urlencode($name)."&caption=".urlencode($caption)."&description=".urlencode($description)."&message=".urlencode($message)."&redirect_uri=".$redirectUri;
?>
Share
Automatically, all my app page photos are uploaded to FBCDN(http://photos-b.ak.fbcdn.net/hphotos-ak-ash4/444_420079768083032_1721580062_s.jpg) So, I cannot use FB dialog feed.
I checked many similar questions in Stackoverflow which suggested dialog feed.
Is there a way to redirect sharer.php?