Using,
Drupal 7.x,
Services 3.x.
Everything is working,
Login
Getting all nodes
logout
Getting Tokens etc
Only while registering a new user i get reponse 500 service unavailable !
Trying it like this,
POST method to
xyz.com/rest/user/register
where rest is the endpoint !
Posting data for registration like this,
{
"name":"user343",
"pass":"kes35@r4",
"mail":"[email protected]",
"status":"1"
}
Your error is caused by a faulty validation call within the drupal services module. It is a tough one to track down. Try a quick patch in the services/resources/user_resource.inc file to fix.
If you are uncomfortable with a standard patch, you can just comment out those lines to quickly apply a manual fix. Information sourced from this page. Keep enjoying Drupal!