在移动应用程序中保存用户会话的位置
本文关键字:会话 位置 用户 保存 移动 应用程序 | 更新日期: 2024-11-08 16:32:59
我有一个用于创建用户会话的Web服务,基本上它是一个登录Web服务。这个 Web 服务基本上创建一个会话密钥,以便对于我需要访问的每个 Web 服务,我需要在我的标头中附加此会话 ID,我的问题是存储此会话 ID 的好地方在哪里,我基本上是移动开发的新手,具有会话 ID,不像 Web 应用程序, 浏览器有cookie和会话,但是在移动应用程序中呢?可以将其保存在SQLite数据库中吗?或者还有其他方法可以存储此会话 ID?这样,即使用户关闭应用并重新打开它,会话也会恢复。
顺便说一下,我正在使用 xamarin 来创建我的移动应用程序,我实际上在考虑是否有一个存储可用于在 iOS 和 Android 中存储和恢复我的会话 ID。
谢谢
我建议为您的应用程序创建一个私有的共享首选项,并将值保留在那里。但是,我还建议每隔一段时间使会话过期,这样如果用户的手机被盗,他们将无法登录您的应用程序并获取信息,假设已达到过期时间。
要保存到共享首选项:
// create a String for the SharedPreferences
private static final String PREFS = "MyAppsPrivatePrefs";
private static final String SESS_KEY = "Session";
private String session = "";
// then access preferences
SharedPreferences sharedPrefs = getSharedPreferences(PREFS, Context.MODE_PRIVATE);
// Open preferences for editting
SharedPreferences.Editor editor = sharedPrefs.edit();
editor.putString(SESSION, session);
editor.commit();
这应该有效,但如果经过一段时间,我再次建议添加逻辑来清除它......
您可以使用 SharedPreferences。http://developer.android.com/reference/android/content/SharedPreferences.html
仅当用户清除缓存时,首选项才会被删除!
使用的是android(不是Xamarin),请在android中使用SharedPreferences类并设置您的用户会话并获取用户会话。我写了代码。首先将名为数据存储的共享首选项类创建为
package com.example.examplesharedpreferenced.utils;
import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
public class DataStore {
private static final String PREF_NAME = "com.example.examplesharedpreferenced.pref";
public static final String KEY_SESSION = "key_session";
public static void setUserSession(Context context, String session) {
SharedPreferences sharedPreferences = context.getSharedPreferences(
PREF_NAME, Context.MODE_PRIVATE);
Editor editor = sharedPreferences.edit();
editor.putString(KEY_SESSION, session);
editor.commit();
}
public static String getUserSession(Context context) {
SharedPreferences sharedPreferences = context.getSharedPreferences(
PREF_NAME, Context.MODE_PRIVATE);
return sharedPreferences.getString(KEY_SESSION, null);
}
}
然后在主活动中使用上述方法,例如
package com.example.examplesharedpreferenced;
import com.example.examplesharedpreferenced.utils.DataStore;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.view.MenuItem;
public class MainActivity extends ActionBarActivity {
private static final String TAG = MainActivity.class.getSimpleName();
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//get user session
String userSession = DataStore.getUserSession(MainActivity.this);
Log.d(TAG, "userSession : "+userSession);
//setting user session
DataStore.setUserSession(MainActivity.this, "abc345asd");
//get user session after setting it.
String userSessionAfter = DataStore.getUserSession(MainActivity.this);
Log.d(TAG, "userSessionAfter : "+userSessionAfter);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
对于Xamarin,您应该点击链接