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 developing facebook application, and i need to get the facebook root page url not iframe, all these methods: document.location,window.location and top.location... return the iframe url ( my hosting server ) not facebook url.

any suggestions ?

share|improve this question
I would think that this is a security feature, and that you can't get the URL. – Boundless Dec 2 '11 at 0:42
This question is a duplicate of: stackoverflow.com/questions/5107451/… – N Rohler Dec 2 '11 at 4:37

1 Answer

Try parent.location.href. It might not work if the iframe isn't coming from the same domain, and if so you will just need to get the request url referrer with your server code.

Edit: To get the current url in PHP try $_SERVER['HTTP_REFERER']

share|improve this answer
didn't work. application host in domain and of course facebook not in same domain. do you have any idea how to get it using php ? – mkayyali Dec 2 '11 at 0:50
@mkayyali updated. – Nick Dec 2 '11 at 0:53
Thank you :) and here is how to load php vars into flash as3 for reference: actionscript.org/forums/showpost.php3?p=1008997&postcount=6 – mkayyali Dec 2 '11 at 1:08
$_SERVER['PATH_INFO'] also get current iframe not parent page ( facebook url ) :S – mkayyali Dec 2 '11 at 2:20
1  
$_SERVER['HTTP_REFERER'], not $_SERVER['PATH_INFO'] – N Rohler Dec 2 '11 at 4:37
show 2 more comments

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.