如何在cakephp的restful webservics中维护会话状态?

我在cakephp中开发了RESTful Web服务。 我使用http GETPOST方法并以JSON的形式发送请求。 有一种情况下,我想维护特定用户的会话,所以我可以跟踪它。

服务器端我维护一个会话,但它不工作

$game_session_id = $this->Session->read('game_session_id');
$leader_game_id = $this->Session->read('gameid')

我必须维护Web服务的会话。

链接地址: http://www.djcxy.com/p/41159.html

上一篇: how to maintain session state in restful webservics in cakephp?

下一篇: based authentication and web API