wp-api-v2-client-java icon indicating copy to clipboard operation
wp-api-v2-client-java copied to clipboard

401 unauthorized error

Open Hunter031 opened this issue 4 years ago • 2 comments

I am trying to play around with the API methods to create and get users. But I keep getting 401 Unauthorized error. I tried with the admin ID and password but I am not sure why I get 401 unauthorized error. Below is my code and request and response log. I have replaced my actual user id and pwd with *** for security purposes.. Pls advise.

09:49:13.490 [main] DEBUG c.afrozaar.wordpress.wpapi.v2.Client - Request Entity: <GET https://cs.genoo.com?rest_route=/wp/v2/users&context=view,{Authorization=[Basic R24zc2lQMDpGRjR4QFZkS3otLTJIWWlzWkM=], User-Agent=[wp-api-v2-client-java/4.8.1]}> Exception in thread "main" org.springframework.web.client.HttpClientErrorException: 401 Unauthorized

public class WordPressAPI {

public static void main (String args[]) {
	com.afrozaar.wordpress.wpapi.v2.Wordpress wordpress = getWordpressClient();
	System.out.println(wordpress);
	
	User user = new User();
	List<User> users = new ArrayList<User>();
	user.setEmail("[email protected]");
	user.setName("Name");
	/*try {
	  user = wordpress.createUser(user, "[email protected]", 
			  "test");
	 users = wordpress.getUsers();
	 System.out.println("Users ==" + users);
	} catch (UsernameAlreadyExistsException e) {
	  e.printStackTrace();
	} catch (UserEmailAlreadyExistsException e) {
	  e.printStackTrace();
	} catch (WpApiParsedException e) {
		e.printStackTrace();
	}*/
	
	 users = wordpress.getUsers();
	 System.out.println("Users ==" + users);
	 
	Term term = new Term();
	term.setName("Test Hunter");
	term.setSlug("Delete this entry");
	Term cat = wordpress.createCategory(term);
	System.out.println(cat);
}

public static com.afrozaar.wordpress.wpapi.v2.Wordpress getWordpressClient() {
    String baseUrl = "https://cs.genoo.com";
    String username = "*****";
    String password = "*****";
    return ClientFactory
      .fromConfig(ClientConfig.of(baseUrl, username, password,
          false,
          true));
}

Hunter031 avatar Dec 26 '20 16:12 Hunter031

I am getting the same error / problem, any ideas? Using Wordpress 5.x (latest) without any installed plugin

With the following error message

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'wpClient': 
Invocation of init method failed; nested exception is org.springframework.web.client.HttpClientErrorException$Unauthorized: 401 Unauthorized: 

[{"code":"rest_user_cannot_view","message":"Sorry, you are not allowed to list users.","data":{"status":401}}]

Update: Ok, got it. Some plugins just blocked my requests... AND i had to install manually the rest basic auth plugin from git https://github.com/WP-API/Basic-Auth

fo0 avatar Apr 04 '21 20:04 fo0

Thanks this was really helpful.

nithyasharabheshwara avatar Feb 15 '22 16:02 nithyasharabheshwara