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 used to FB.Arbiter.inform('setSize', { width: 760, height: 1485 }) increse the height for my facebook app.It's working yesterday, but today is not working.If you know how to dynamically increse the height in facebook app ,give some information about this.

                   Thanks in Advance.
share|improve this question
Not sure this is exactly what you're after, but have you looked at FB.Canvas.setAutoGrow() ? – Lee Sibbald Jul 4 '12 at 6:19
it is increase the height, but i want fix the height of the page.FB.Canvas.setAutoGrow() is increse the height like tree – Penigandla Koti Jul 4 '12 at 6:21
possible duplicate - stackoverflow.com/questions/11270906/… – Philip Jul 4 '12 at 8:11

2 Answers

up vote 0 down vote accepted

In Javascript, after you setup the fixed height parameter in your application settings,
you can call FB.Canvas.setSize to change the page height.

If your page height changes dynamically, you can run FB.Canvas.setDoneLoading
to check if Canvas is loaded and run FB.Canvas.setAutoGrow.

FB.Canvas.setSize({ width: 810, height: 950 });

FB.Canvas.setDoneLoading( function(response) {
    console.log(response.time_delta_ms);
    FB.Canvas.setAutoGrow();
});

FB Documentation: https://developers.facebook.com/docs/reference/javascript/FB.Canvas.setDoneLoading/

share|improve this answer
Thanks for the giving the idea,it realy working.it is increase the height , but i click on the hide button, it decrease the height.Do u have idea on this, u will share information for me. – Penigandla Koti Jul 4 '12 at 10:39
You have a button where you hide/show content and you have user action change your page height? setAutoGrow() will run once your page loaded with setDoneLoading(). – Philip Jul 4 '12 at 11:03
hide/show client click using the java script. js method as folows,var heig=800; FB.Arbiter.inform('setSize',{width: 760, height: + heig }); FB.Canvas.setDoneLoading( function(response) { alert("height:" + response.time_delta_ms); FB.Canvas.setAutoGrow(); }); }); – Penigandla Koti Jul 4 '12 at 11:24
Update your question, don't write all this code in comments, loosing my eyes here! – Philip Jul 4 '12 at 11:34

After all, the real problem is from facebook with http*s*

You can follow the issue here:

https://developers.facebook.com/live_status

Everything else is ok, just change setAutoResize to setAutoGrow

Regards

share|improve this answer

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.