web-dev-qa-db-fra.com

Comment créer en toute sécurité et à distance un nouvel utilisateur dans wordpress avec Rest API

J'essaie de créer des utilisateurs dans WordPress version 4.9.1, à l'aide de l'API wordpress. Voici mon PHP code ci-dessous:

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_PORT => "8080",
  CURLOPT_URL => "http://localhost:8080/my_site/wp-json/wp/v2/users/",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-    Disposition: form-data; name=\"username\"\r\n\r\nwakawaka\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"email\"\r\n\r\[email protected]\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"password\"\r\n\r\ncITt xOSx HGKG GjTw No33 hzpG\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"ACCESS_TOKEN\"\r\n\r\ncITt xOSx HGKG GjTw No33 hzpG\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--",
  CURLOPT_HTTPHEADER => array(
    "cache-control: no-cache",
    "content-type: multipart/form-data; boundary=----    WebKitFormBoundary7MA4YWxkTrZu0gW",
    "postman-token: 84cad22c-9f08-d2b1-18f6-6eb9880f3f5f"
  ),
));

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}

Quand j'exécute le code, la création d'un nouvel utilisateur échoue et c'est le code d'erreur que je reçois:

 {
  "code":"rest_cannot_create_user",
  "message":"Sorry, you are not allowed to create new users.",
  "data":  {"status":401}
} 

Comment créer à distance et en toute sécurité un nouvel utilisateur dans wordpress à l'aide de l'API Rest de wordpress?

2
Terungwa

Pour créer du contenu sur un site Web WordPress via REST-API, vous devez utiliser l'authentification.

Vous avez deux options pour obtenir des jetons OAuth. Explications détaillées dans le lien suivant:

https://developer.wordpress.org/rest-api/using-the-rest-api/authentication/

4
Moshe Harush