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 recently seem to have reached a limit regarding the no. of XFBML-tags which are allowed per document/page. In particular, I had a page with 100+ fb:profile-pic elements:

<fb:profile-pic uid="..."/>
<fb:profile-pic uid="..."/>
...

When rendered & parsed, all fb-profile-pic's remain empty, no javascript errors whatsoever etc. If I reduce the XFBML elements to 66, everything works fine and the profile-images are rendered. On more XFBML-tag (67), and everything is gone. It's also not about the particular User-IDs (I've tried a different set, same result).

I'm using the latest JS SDK (http://connect.facebook.net/de_DE/all.js), obviously with xfbml:true on fbAsyncInit.

Do you have experienced similar limits, and is there a way around this?

share|improve this question

1 Answer

up vote 0 down vote accepted

Why not render img tags directly? I have a wonderful little php-helper for the profile-pic url:

  public function profileImage($fbUid = 1, $type = "square") {
    if (!in_array($type, array("square", "small", "normal", "large"))) {
      $type = "square";
    }
    return "https://graph.facebook.com/$fbUid/picture?type=$type";
  }

Call it directly with

<img src="<?=profileImage("100002012872577")?>" ...>
share|improve this answer
Great idea, at least for fb:profile-pic that's a good solution. Might be more difficult with fb:name, when you don't have first/lastname already queried before & at hand... – Michael Kamleitner Sep 7 '11 at 11:01
that's correct. I use the fbml-tags for names too, but haven't reached the described limit in any of my projects yet. looking forward to an answer from a more experienced fb-dev. – Johannes N. Sep 7 '11 at 11:04

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.