I am confused by this response. I found the register() function in the php client documentation. It should be register($userid,$request);. For the $userid I am planning on using the email_address. For the $request I plan on using this:
$applicationId = "32688330-1630-4e0d-a4de-8ae45c3ca527";
$request = array();
$request["applicationId"] = $applicationId;
$request["loginId"] = $post_array[employee_email];
$request["password"] = "";
So it would be register($post_array[employee_email],$request);
Is this the proper API call to register a user? This is returning a $result->errorResponse of null.
status=0
successResponse=null
What does this mean? Was the install bad?
This line seems to have executed correctly (I think)
$_SESSION['client'] = new FusionAuth\FusionAuthClient($apiKey, "http://localhost:9011");