I want to post a Youtube video in my Facebook wall. I'm using Facebook Android SDK 3.0.1 I found this tutorial : Posting an embedded YouTube link using the Facebook sdk
When I post a Youtube video directly in my Facebook wall, it looks like this :
And when I post a Youtube video via my Android application, it look like this :
I have 2 issues in fact :
1) I don't want to show the caption (www.youtube.com)
2) When I click on the title, the video is played in the default browser or Chrome, why is it not just being played in Facebook wall ?
P.S : When I click on the picture on left, the video here is played in Facebook wall.
Here is how I tried:
Bundle postParams = new Bundle();
postParams.putString("message", "message test");
postParams.putString("link", "http://www.youtube.com/watch?v=3aICB2mUu2k");
postParams.putString("source", "http://www.youtube.com/v/3aICB2mUu2k");
postParams.putString("picture", "http://img.youtube.com/vi/3aICB2mUu2k/0.jpg");