在Android应用程序登录后,如何创建的PHP API令牌会话?
像这样:
我想确保当用户登录它会留在会议无论发生了什么(坠毁,关机/关机/重启,使应用程序)在同一时间的用户信息数据将与所有在活动中发应用程序的网络服务器。
难道我简单地使用:
session_start();
$_SESSION['username'] = $user;
$_SESSION['auth'] = "true";
如果是的话我怎么通过这个会议到Android应用程序?
登录身份认证的Android应用程序:
HttpClient client = new DefaultHttpClient();
String url = "http://www.somewebsite.com/login.php?username="+username+"&password="+password;
HttpGet request = new HttpGet(url);
// Get the response
ResponseHandler<String> responseHandler = new BasicResponseHandler();
response_str = client.execute(request, responseHandler);
php android authentication login session-cookies