Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do I need Google App Engine to make and run a Facebook App?

I set up the Google App Engine on my computer to work with Python , so I could make my first "Hello World" App at http://localhost:8080/. In the developers section of facebook it says I need Google App Engine and Python to test an app. But my question is, can I just host the files(the .yaml and the .py) on my server account instead(once I'm done testing)?

like image 206
Matthew Paul Chapdelaine Avatar asked Feb 24 '23 13:02

Matthew Paul Chapdelaine


2 Answers

You do not specifically need Google app engine, that i believe is just a sample app. The main thing that you need is a globally accessible web server. So that FB can reach your pages/application from their servers. So depending on the language, get a small/free hosting account and test your application from there. Or you may also try Dynamic DNS to be able to reach your local machine from the outside world http://www.dyndns.com/services/dns/dyndns/

like image 175
Sabeen Malik Avatar answered Apr 07 '23 18:04

Sabeen Malik


That example is written in Python and specifically targeted for Google App Engine. So, yes you do need Google App Engine to run that example without modification. However, almost any web hosting would suffice in general with your own application.

like image 44
Judge Maygarden Avatar answered Apr 07 '23 18:04

Judge Maygarden