4

是否可以与 cakePhp 网站通信 android 应用程序并共享数据?如果可能的话,我想创建一个可以登录网站的应用程序;我的疑问是:

  1. 如何将用户名和密码从我们的应用程序传递到 cakephp 网站登录页面?谁能给我看一个示例程序?

  2. cakephp 控制器如何处理这个请求并响应这个请求?请给我一个示例程序?

(我是 android 和 cakephp 的初学者。)

4

3 回答 3

7

快速回答——是的!

我们刚刚完成了将一个 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_”,您可以使用任何您想要的函数名称,但这有助于我们掌握我们允许移动用户与 Web 用户执行的操作。

现在,这些只是构建块。您基本上必须使用 HTML 和 Javascript 在手机上创建网站的完整版本,因此根据您的应用程序,为您的网站创建响应式设计并允许移动浏览可能会更容易。

于 2013-01-12T11:28:40.887 回答
2

使用 Admad JWT 身份验证插件

如果您使用 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 实现的教程

http://www.bravo-kernel.com/2015/04/how-to-add-jwt-authentication-to-a-cakephp-3-rest-api/

于 2016-10-27T19:12:49.207 回答
-1

如果将 cakephp 中的大多数视图页面重建为 ajax 似乎会破坏使用 cakephp 的目的。

于 2014-06-05T01:03:56.487 回答