skip to Main Content

Redis – Plugin caching_sha2_password could not be loaded: /mariadb19/plugin/caching_sha2_password.so: cannot open shared object file

I am trying to dockerise my Django app. docker-compose.yml version: "3.8" services: db: image: mysql:8 command: --default-authentication-plugin=mysql_native_password # this is not working restart: always environment: MYSQL_ROOT_PASSWORD: rootmypass ports: - '3306:3306' cache: image: redis environment: REDIS_HOST: localhost REDIS_PORT: 6379 ports: -…

VIEW QUESTION

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
Back To Top
Search