0

This is the tutorial I followed. I encountered the following error message:

Required field(s) name, email, password is missing or empty

It looks like I didn't post the correct parameters in my post. But it's not the case. Please refer to my screenshot:

enter image description here

I debugged the source code and found all the following variables are null:

        $name = $app->request->post('name');
        $email = $app->request->post('email');
        $password = $app->request->post('password');

Can anybody tell me what could be the reason? Thanks

Bagusflyer
  • 12,675
  • 21
  • 96
  • 179

1 Answers1

0

I faced the same problem. At first I used "Poster" for Mozilla Firefox. I got error: true. After that I used "Advanced REST client" for Chrome. I got error: true. Finally I used Postman -REST client and the problem was gone. I got error: false. and the successful message.

Junaid Fahad
  • 149
  • 7