IE not saving cookies with facebook apps
Here is a nice gotcha that i hope will save someone some time. If you are creating a Facebook app, then you are probably using iframes, and probably using cookies, and probably care that it works in Internet Explorer. If all those are true the Gotcha is that IE will not allow iframes to save cookies unless there is a p3p header set. It won’t tell you that it is being asked to save cookies it doesn’t like, and it won’t tell you that it decided to not save cookies. In order for IE to behave like the other browsers you have to set the header.
Mine is:
p3p:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"
No idea what it means. but after setting it, the cookies got saved. Hope this helps out someone else