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.

Is there a way to link to the facebook photos tab of a Page via an iFrame loaded from a custom App (tab)? If I try to link to num?sk=photos, it gives me the "Go to Facebook.com" loaded in that iframe. I pretty much want a redirect.

Is that possible? Or does FB block link-ins like that?

Let me know, Thanks!

share|improve this question
1  
have you set target = _top on your link? – Igy Sep 1 '11 at 19:24
1  
Oh, that was easy. I don't use iframes much. Guess I should have looked harder. Much appreciated! – tr3online Sep 1 '11 at 21:11

2 Answers

up vote 2 down vote accepted

I've been using javascript to set window.top.location.href = url;, but after reading Igy's comment, I think I'll be switching to target = _top

share|improve this answer

I think you should check out facebook developer page.

You can use GRAPH API to access photos, photo albums, profile pictures unless any user has different privacy setting.

You might want to check out GRAPH API for that, I hope it might help you to get started.

share|improve this answer
The problem of linking to photos still applies when using the Graph API. the target = _top tip is still helpful there. – Mark Stosberg Jan 14 at 15:38

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.