我有一个用于创建用户会话的Web服务,基本上是一个登录Web服务。这个Web服务基本上创建了一个会话密钥,因此对于我需要访问的每个Web服务,我需要在我的标题中附加此会话ID,我的问题是存储此会话ID的好地方,我基本上是新手在具有会话ID的移动开发中,不像Web应用程序,浏览器有cookie和会话,但在移动应用程序中呢?可以将它保存在SQLite数据库中吗?或者还有其他方法来存储此会话ID?因此,即使用户关闭应用程序并重新打开它,该会话也将恢复。
顺便说一下,我正在使用xamarin来创建我的移动应用程序,我实际上在想是否有一个存储空间可用于在iOS和Android中存储和恢复我的会话ID。由于
答案 0 :(得分:2)
我建议为你的App创建一个私有的SharedPreferences,并在那里保存值。但是,我还建议让会话过期,以便如果用户手机被盗,他们将无法登录您的应用程序并获取信息,假设已达到到期时间。
要保存到共享首选项:
// 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();
这应该可行但是我会建议添加逻辑来清除这个,如果已经过了一段时间......
答案 1 :(得分:0)
您可以使用SharedPreferences。 http://developer.android.com/reference/android/content/SharedPreferences.html
仅当用户清除缓存时,才会删除首选项!
答案 2 :(得分:0)
如果您使用的是android(而不是Xamarin),那么在Android中使用SharedPreferences类并设置您的用户会话并获取用户会话。我将代码编写为。 首先创建名为DataStore的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,您应该遵循link