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 am embeding a JWplayer video onto a facebook wall by Facebook Feed method and I can't set height of a video, funny it may seem but I spent time over it, previously I had no problem with it while working on og:video:height but this time I want a share-functionality.

function fb_post() {

    skin = $("#fb-skin").html();
    file = $("#fb-file").html();


    var obj = {
      method: 'feed',
      link: $("#fb-link").html(),
      picture: $("#fb-image").html(),
      width: 420,
      height: 32,
      source: 'http://xxx/js/jwplayer/player.swf?height=32&width=420&skin='+skin+'&file='+file+'&autostart=true',
      name: $("#fb-name").html(),
      caption: $("#fb-caption").html(),
      description: $("#fb-description").html()
    };

    function callback(response) {
        // callback
    }

    FB.ui(obj, callback);
  }

Resulted height is about 300 px..

Can I know what do I need to change to achieve height of 32 px of embeded video size?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.