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 it possible to check from where user came to my facebook application? I'm looking for something similar to $_SERVER["HTTP_REFERER"]. My facebook application is written in PHP.

share|improve this question

1 Answer

No, since facebook "proxies" every request to your app, you will never see a referer. The only thing you could do would be handing out self generated referer-urls.

Just apply the GET parameter app_data to your url - this gets passed directly through to your app with the signed request. This would be a method of tracking how many visitors come from sources you know and made a link deal, for example.

share|improve this answer
thank you for your answer, I've found something like this, but havn't understand how can I use it. It need to be in array: $facebook->getSignedRequest(). But if I use link - apps.facebook.com/MYAPP/?app_data=someinfo I don't see it there. – user1067939 Nov 27 '11 at 20:31

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.