Note that there are some explanatory texts on larger screens.

plurals
  1. POFacebook App not displaying
    primarykey
    data
    text
    <p>I've created a few apps/pages however i recently created a new one and it wont display at all in Facebook (fine on mobile?). Its a simple page with html, Nothing special.</p> <p>I'm using Google App engine as its not a paying job so the free https:// is helpful. I've used app engine before and it works fine with FB.</p> <p>I created ate app on March 3rd and have read multiple articles saying FB changes a few things(again!).</p> <p>I'm noticing in Firebug that there is a post made from FB to my app which fails with a 405 method.</p> <p>Does anyone know a simple way to get around this in App engine.</p> <p>The app page is <a href="https://apps.facebook.com/abacas-facebook/" rel="nofollow">https://apps.facebook.com/abacas-facebook/</a></p> <p>the app itself is <a href="https://abacasfacebook.appspot.com/" rel="nofollow">https://abacasfacebook.appspot.com/</a></p> <p>ps the login button etc are just things i was trying out. The page is just text</p> <p>Here the app code(nothing complicate at all)</p> <p>MAIN.PY</p> <pre><code>from google.appengine.ext import webapp from google.appengine.ext.webapp import util from google.appengine.ext.webapp import template class MainHandler(webapp.RequestHandler): def get(self): self.response.out.write(template.render('index.html', {})) def post(self): self.response.out.write(template.render('index.html', {})) def main(): application = webapp.WSGIApplication([('/', MainHandler)], debug=True) util.run_wsgi_app(application) if __name__ == '__main__': main() </code></pre> <p>Any help is much appreciated</p> <p>Thanks Si</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload