wp-api-v2-client-java
wp-api-v2-client-java copied to clipboard
401 unauthorized error
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));
}
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
Thanks this was really helpful.