admin管理员组

文章数量:1130349

I am new to WordPress and I'm trying to make a POST request to login a user. I want to be able to send "username" and "password" as params while making this call. How can I do so. This my code so far

        register_rest_route(
            'custom-plugin', '/login/(?P<username>\d/(?P<password>\d)',  
              array(
                'methods'  => 'POST',
                 'callback' => 'login_user',
         ));

I am new to WordPress and I'm trying to make a POST request to login a user. I want to be able to send "username" and "password" as params while making this call. How can I do so. This my code so far

        register_rest_route(
            'custom-plugin', '/login/(?P<username>\d/(?P<password>\d)',  
              array(
                'methods'  => 'POST',
                 'callback' => 'login_user',
         ));

本文标签: phpHow do I send a POST request with params with WordPress REST API