Parse dashboard issue - form tampered with

765 Views Asked by At

When I log in am getting prompt as "form tampered with"

I am unable to fix this issue.

Please let me know what I am missing in this config.
parser-dashabord - @1.2.0
parse-server - @3.1.2

Parse-Dashboard js File

var options = {
      allowInsecureHTTP: true,
      cookieSessionSecret:'thisismysecretkey'
    };

var dashboard = new ParseDashboard({
  "apps": [{
    "serverURL": "http://parseserver:1337/parse",
    "appId": "mobile-apps",
    "masterKey": "**",
    "appName": "First App"
  }],
  "users": [{
    "user": "user1",
    "pass": "pass",
    "apps": [{
      "appId": "mobile-apps"
    }]
  }],
  "trustProxy": true,
  "useEncryptedPasswords": false
}, options);

Is there anything I missed with the config in parse-server configuration file?

0

There are 0 best solutions below