是否可以通过cakePhp网站与android应用程序进行通信并共享数据?如果可能,我想创建一个可以登录网站的应用程序;我怀疑是:
如何将用户名和密码从我们的应用程序传递到cakephp网站登录页面?有人能给我看一个示例程序吗?
cakephp控制器如何处理此请求并响应此请求?请给我看一个示例程序?
(我是android和cakephp的初学者。)
答案 0 :(得分:8)
快速回答 - 是的!
我们刚刚将Android应用推向市场,完成了这一切。这是我们如何做到的:
1)下载并学习在Eclipse中使用Cordova PhoneGap(2.2.0是最新版本)。只需一些HTML和大量的Javascript,这就可以让整个事情变得更加轻松。
2)在JS中,创建使用AJAX参数推送登录信息的方法。示例:
document.addEventListener('deviceready', onDeviceReady, false);
function onDeviceReady() {
$("#login").click(function() {
$email = $("#UserEmail").val();
$pass = $("#UserPassword").val();
$.ajax({
url : yourURL + 'api/users/login',
async : false,
data : {
'email' : $email,
'password' : $pass
},
dataType : 'json',
type : 'post',
success : function(result) {
/**
* do your login redirects or
* use localStorage to store your data
* on the phone. Keep in mind the limitations of
* per domain localStorage of 5MB
*/
// you are officially "logged in"
window.location.href = "yourUrl.html";
return;
},
error : function(xhr, status, err) {
// do your stuff when the login fails
}
});
}
}
3)在Cake / PHP中,您的用户控制器将在AJAX调用中获取用户名和密码数据,并将其用于身份验证。
<?php
class UsersController extends AppController {
public $name = 'Users';
public function beforeFilter() {
parent::beforeFilter();
$this->Auth->allow('api_login');
}
public function api_login() {
$this->autoRender = false;
if ($this->request->data && isset($this->request->data['email']) && isset($this->request->data['password'])) {
$arrUser = $this->User->find('all',array(
'conditions'=>array(
'email'=> $this->request->data['email'],
'password' => $this->Auth->password($this->request->data['password']),
)
)
);
if (count($arrUser) > 0) {
$this->Session->write('Auth.User',$arrUser[0]['User']);
// Do your login functions
$arrReturn['status'] = 'SUCCESS';
$arrReturn['data'] = array( 'loginSuccess' => 1,'user_id' => $arrUser[0]['User']['id'] );
} else {
$arrReturn['status'] = 'NOTLOGGEDIN';
$arrReturn['data'] = array( 'loginSuccess' => 0 );
}
} else {
$arrReturn['status'] = 'NOTLOGGEDIN';
$arrReturn['data'] = array( 'loginSuccess' => 0 );
}
echo json_encode($arrReturn);
}
}
?>
这就是它。您现在已经过CakePHP的身份验证。
您不需要使用“api_”,您可以使用您想要的任何功能名称,但这有助于我们处理移动用户与网络用户相比所做的事情。
现在,这些只是构建块。您基本上必须使用HTML和Javascript在手机上创建整个版本的网站,因此根据您的应用程序,为您的网站创建响应式设计并允许移动浏览可能更容易。
HTH!
答案 1 :(得分:2)
使用Admad JWT Auth插件
如果你使用cakephp3改变你的登录功能:
public function token() {
$user = $this->Auth->identify();
if (!$user) {
throw new UnauthorizedException('Invalid username (email) or password');
}
$this->set([
'success' => true,
'data' => [
'token' => JWT::encode([
'sub' => $user['id'],
'exp' => time() + 604800
],
Security::salt())
],
'_serialize' => ['success', 'data']
]);
}
您可以阅读本教程关于REST Api和JWT Auth Implementation
http://www.bravo-kernel.com/2015/04/how-to-add-jwt-authentication-to-a-cakephp-3-rest-api/
答案 2 :(得分:-1)
如果将cakephp中的大多数视图页面重建为ajax似乎都会破坏使用cakephp的目的。