콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
9049 화면

I'm creating a RESTful API using PHP to distribute all my requests to the right place (one of them is Odoo).

So I was using the API reference and I'm trying to register a user using the API.

The request is made using:
$id = $model->execute_kw($db, $uid, $pass, 'res.users', 'create', [['name' => $data->fullName, 'login' => $data->username, 'new_password' => $data->password]]);

The response is: 
{"faultCode":4,"faultString":"(u'The requested operation cannot be completed due to security restrictions. Please contact your system administrator.\\n\\n(Document type: Users, Operation: write)', None)"}

The $model param is instantiated correctly, because I can use the 'search_read' action with success.

I'm fairly new to Odoo so go soft on me :).

아바타
취소
작성자 베스트 답변

I finally found the problem to this issue. The field new_password should have been just password.
I'm not pleased that Odoo responds with a message so vague. But anyway, my evening has been saved. Sorry to bother you.
I'll keep the answer here.

아바타
취소
관련 게시물 답글 화면 활동
2
3월 24
9897
2
5월 23
5615
1
2월 23
25601
1
9월 20
7384
3
7월 19
11328