skip to Main Content

Facebook Messengerbot python ( The Callback URL or Verify Token couldn't be validated. Please verify the provided information or try again later.)

Am trying to implement facebook messenger chatbot in python. Am created One API in python below @api_view(['GET']) def verify(request): form_data = request.query_params mode = form_data.get('hub.mode') token = form_data.get('hub.verify_token') challenge = form_data.get('hub.challenge') if mode and token: if mode == 'subscribe' and…

VIEW QUESTION

Deploying Multiple Django Websites with Apache & mod_wsgi Windows

I am using mod_wsgi in a virtualenv with Apache 2.4 and I want to serve multiple Django sites from the same server. httpd.config ### Configuration Site_1 LoadModule wsgi_module " S:/Site_1/VirtualEnvSite_1/Lib/site-packages/mod_wsgi/server/mod_wsgi.cp36-win_amd64.pyd" WSGIApplicationGroup %{GLOBAL} WSGIPythonHome "c:/users/mmyuser/appdata/local/programs/python/python36" WSGIScriptAlias / " S:/Site_1/site_1/site_1/wsgi_windows.py" WSGIPythonPath "…

VIEW QUESTION
Back To Top
Search