WordPress REST API更新基于用户名的用户

时间:2018-01-24 01:37:11

标签: wordpress wordpress-rest-api

有没有办法可以更新用户名而不是ID?当我尝试创建用户时,将添加到另一个网站,但创建的ID与我的主网站上的ID不同。现在我的问题是用户名更新该用户。有可能吗?

这是我在更新时尝试过的,它已经正常运行但基于ID。

带身份验证的更新代码

function update_user_api( $entry, $form ) {

$firstname = $entry[3];
$lastname = $entry[4];
$email = $entry[5];

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => "https://mywebsite/wp-json/wp/v2/users/11?context=edit", //I would like to change this to username if possible
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => "first_name=".$firstname."&last_name=".$lastname."",
  CURLOPT_HTTPHEADER => array(
    "authorization: Basic MDAwOjAwMA==",
    "cache-control: no-cache",
    "content-type: application/x-www-form-urlencoded",
    "postman-token: 0a02f782-eab1-e4d7-e866-737c6894fad3"
  ),
));

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

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
}
add_action( 'gform_after_submission_16', 'update_user_api', 10, 2 );

1 个答案:

答案 0 :(得分:1)

我们也讨论了这个问题,我们的工作是将从另一个网站创建的userID保存为主网站上用户的usermeta,并使用它来通过wp rest api进行更新。希望能帮助到你。干杯