使用存储的用户名和密码登录Wordpress

时间:2011-06-07 15:36:10

标签: ios wordpress

我是如何使用iPhone应用程序中存储的用户名和密码登录Wordpress网站的?我正在寻找一个指向正确方向的指针,因为我之前没有在网上找到很多细节。

1 个答案:

答案 0 :(得分:0)

您可以将WP网站设置为使用wp_signon()(http://codex.wordpress.org/Function_Reference/wp_signon)来接收凭据并立即登录。

可能是这样的:

<?php

   //First check useragent/nonce to make sure it's coming from your phone/app

   //Now get credentials and log in
   $creds = array();
   $creds['user_login'] = $_POST['usr'];
   $creds['user_password'] = $_POST['pwd'];
   $creds['remember'] = true;
   $user = wp_signon( $creds, false );
   if ( is_wp_error($user) ){
      echo $user->get_error_message();
   } else {
     //do your stuff
   } 
?>

不是超级复杂,但可能是一个开始=)

希望有所帮助!