This question has been flagged
1 Reply
4584 Views

I have enable the reset password setting in openerp. And found that a button appears at the login screen enabling user to reset password. Inspecting this button, I found that this button is using a xml rpc call service to send a email with reset password link.. 

self.rpc("/auth_signup/reset_password", { dbname: db, login: login }).done(function(result) {

                self.show_error(_t("An email has been sent with credentials to reset your password"));

});

So I wanted to use this service in my client app, to enable the user to reset password same as the openerp does, so I have written the following code:

$.xmlrpc({  

url: 'http://openerp.example.com/auth_signup/reset_password',

methodName: 'call',

dataType: 'jsonrpc',

// params: [dbname, 'sperson3', ''],

params: {'dbname':dbname, 'login':'user1', 'context':{}},

success: function(response, status, jqXHR) {

console.log(response);

alert('success')

},

error: function(response, status, jqXHR) {

console.log(response);

alert('error')

},

});

But this always returning in error. am I doing something wrong? can we use the service like this. Please help me for this.


Avatar
Discard
Author Best Answer

Solution: 

odoo.com/forum/help-1/question/how-to-implement-the-openerp-v7-forgot-password-functionality-in-client-app-84886

Avatar
Discard