I am creating a Facebook app in Python + Django. I followed all the instructions mentioned on this page: http://wiki.developers.facebook.com/index.php/User%3APyFacebook%5FTutorial But it ended up giving me this error:
The URL http://amitverma.dyndns.org/fbsample/?auth%5Ftoken=0e80c8dbba442763d2c539d6e64e992a is not valid. Please try again later. We appreciate your patience as the developers of roadies and Facebook resolve this issue. Thanks!
Now here is the lowdown:
I am on a adsl modem/routed network with dynamic addressing. i tried to forward my port, 80 and 8080 on 192.168.2.2. thats my static address. i guess this is not visible from the internet. then i created a dynamic dns through dyndns, : amitverma.dyndns.org. still no go.
the thing is i have to run a simple server of sorts to make Django run. i make the server run like this: python manage.py runserver 0.0.0.0:80. the 0.0.0.0 is the IP address and 80 is the port number. now what should i enter in the facebook application edit settings page in the field that says CANVAS PAGE URL. my facebook app canvas URL is: amitverma.dyndns.org/fbsample/ when i access it, it gives me the above error.
I have spent the last 10 hours fiddling with this and still cant seem to make it run.
PS: Please dont say its not a programming question. I think more than networking, its something else I am doing wrong.. Please help me out.