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.
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.
|
|
||||
|
|
|
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. |
|||||
|