我正在为我公司的员工编写一个应用程序(在网络和Android上运行),我想使用Parse.com来存储数据。
但是我想用我公司的MYSQL数据库来检查我的员工账号和密码是否正确。
如果我的服务器上有php文件, 例如:
<?php
$account=$_POST['account'];
$pw=$_POST['pw'];
if (checkifpwiscorrect($account,$pw)==true) {
//how can the user also log in to Parse
} else {
// account or password wrong
}
?>
如果帐号和密码正确,如何登录Parse?
答案 0 :(得分:0)
这是一个实际使用restClient类请求方法的登录函数。
public function login($username, $password) {
if (!empty($username) || !empty($password)) {
$request = $this->request(array(
'method' => 'GET',
'requestUrl' => 'login',
'data' => array(
'username' => $username,
'password' => $password
)
));
return $request;
} else {
$this->throwError('username and password field are required for the login method');
}
}