Interesting. After you said that, I went back and looked at the default profile edit page. It looks like vB does not give the option to users to change their username either. So, probably that's why we can't use this api to change the user's name. I guess I need to follow the same process and not allow users change their usernames.
So in that case and for my knowledge, why do we need the following line in the save user api?
PHP Code:
'user' => array( 'email' => $email, 'username' => $username ),
Do we really need it? or can I change it to
PHP Code:
'user' => array(),
--------------- Added [DATE]1567566465[/DATE] at [TIME]1567566465[/TIME] ---------------
OK, now I think I'm losing my mind. This is crazy. When I tested the script I posted here 10 minutes ago, it was working by updating the user's email and password, and when I was entering a wrong password, it was giving me the error message "badpassword".
Now I went back to test again (without changing anything in the code) and I'm getting the error message "enter_current_password" error message, even when I enter correct current password or wrong currect password and nothing is updating.
How in the world is this possible that I'm getting a different response?