This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Create user by code
#4
This cannot be done with DB access. Here's an example of HTTP request which creates a new user. Change admin password in socket.http.request call.

Code:
require('json')
require('socket.http')
require('socket.url')

data = {
  name = 'test', -- full name
  login = 'testtest', -- login
  password = '123456', -- password
  password_repeat = '123456', -- must match password
  access_vis = 'F', -- full access to visualization
  access_schedulers = '', -- no access to schedulers
  access_trends = 'F', -- full access to trends
}

post = 'data=' .. socket.url.escape(json.encode(data))
res, err = socket.http.request('http://admin:admin@127.0.0.1/scada-main/users/save', post)
log(res, err)
Reply


Messages In This Thread
Create user by code - by gdoro - 03.04.2019, 13:13
RE: Create user by code - by admin - 03.04.2019, 13:35
RE: Create user by code - by gdoro - 03.04.2019, 15:51
RE: Create user by code - by admin - 04.04.2019, 07:21
RE: Create user by code - by Carlos Padilla - 15.05.2019, 16:27
RE: Create user by code - by admin - 16.05.2019, 05:55
RE: Create user by code - by Carlos Padilla - 16.05.2019, 21:35
RE: Create user by code - by Carlos Padilla - 20.05.2019, 16:42
RE: Create user by code - by admin - 21.05.2019, 06:22
RE: Create user by code - by Carlos Padilla - 22.05.2019, 16:32
RE: Create user by code - by admin - 28.05.2019, 12:00
RE: Create user by code - by Carlos Padilla - 30.05.2019, 20:55
RE: Create user by code - by Carlos Padilla - 26.08.2022, 22:39
RE: Create user by code - by admin - 29.08.2022, 06:31
RE: Create user by code - by Carlos Padilla - 29.08.2022, 17:20

Forum Jump: