I'm trying to write some javascript functions to integrate with the Facebook stream. However they only seem to work if you are developing them directly on the live server so that Facebook can access the xd_receiver.htm
file that they ask me to place at www.mydomain.com/xd_receiver.htm
. However you all can probably agree that it's really important not to develop on the live servers.
Here's what I've tried so far:
- Placing
xd_receiver.htm
on the live server and running my scripts on my dev server hoping that the API Key would tell the Facebook server to look forxd_receiver.htm
on my live server...no luck - Signing up for two API Keys with Facebook: a dev key pointing to 127.0.0.1 and a live one pointing to my live site. The theory here was that if
xd_receiver.htm
was only needed locally then it would find it via 127.0.0.1...no luck
Has anyone figured out a way to do this? They can't expect us to develop our Facebook Apps purely live without a dev sandbox.
Some background info for what it's worth: Using ASP.NET with VB but hoping to use purely Javascript.