gpt4 book ai didi

android - 存储用户凭据的更好方法

转载 作者:行者123 更新时间:2023-11-29 14:02:44 26 4
gpt4 key购买 nike

好的,所以我正在尝试为 iPhone 和 Android 开发一个移动网站应用程序。目前我的站点使用 cURL 将用户登录到另一个站点。我有一个 PHP 脚本,它根据用户的用户名创建一个 cookie。然后 cURL 将信息放入该 cookie 中。 Cookie 存储在我网站的主机上。

基本上,我正在创建的这个移动网站应该允许用户登录到我为此开发的论坛(网站所有者不允许我在他们的网站上创建移动版本,因此需要在我的网站上创建)。然后,一旦他们登录,他们就可以阅读帖子并回复帖子。当它去阅读时,线程需要加载 cookie,以及当他们尝试发帖时。

如何让 cookie 保存到用户手机而不是我的服务器?我问的原因是,我希望这样我的主机就不会被大量带有用户凭据的文本文件填满(我不想看到,所以我不是网络钓鱼)。

我想要它让用户登录,cookie 被保存到手机中。他们想阅读手机拉出该 cookie 的帖子。他们想发帖,电话调出 cookie。

我查看了 PHP setcookie() 函数,不确定它是否是我需要的。

我们将不胜感激。

最佳答案

当您在服务器端设置 cookie 时,该 cookie 会通过称为 HTTP header 的东西发送到客户端(在本例中为您的手机)。有一个名为“Set-Cookie”的 HTTP header 和 cookie 的值。当浏览器将来向服务器发出请求时,它期望在名为“Cookie”的 HTTP header 中返回该值

因此,如果您想设置一个 cookie 并使用该 cookie,只需从您的请求中获取 cookie,将其存储在安全的地方,并在以后的请求中返回即可。

http://en.wikipedia.org/wiki/HTTP_cookie

这是一个简单的身份验证方法,它接受一个 url、一个用户名和一个密码并返回 cookie 值。

static public String authenticate(String service_url, String username, String password) throws IOException
{
if (username == null || password == null)
throw new IOException();

String charset = "UTF-8";
URL url = new URL(service_url);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset="+charset);
connection.setDoOutput(true);
connection.setRequestMethod("POST");
connection.setReadTimeout(5000); // 2 second timeout.

String query = String.format("Email=%s&Password=%s",
URLEncoder.encode(username, charset),
URLEncoder.encode(password, charset));

OutputStream output = null;
try {
output = connection.getOutputStream();
output.write(query.getBytes(charset));
} finally {
if (output != null) try { output.close(); } catch (IOException logOrIgnore) {}
}

connection.getInputStream();

List<String> cookies = connection.getHeaderFields().get("Set-Cookie");
if (cookies == null)
throw new IOException();

for (String cookie : cookies)
{
if (cookie.startsWith("authcookie"))
return cookie; // this is the only correct path out.
}
throw new IOException();
}

例如 HTTPGET,注意 http header 以将 cookie 值添加回请求。

public static InputStream getDataFromHTTP(String url, String authenticationCookie, String     mimetype) throws ClientProtocolException, IOException
{
DefaultHttpClient client = getHttpClient();

if (client == null)
throw new IOException("Cant getHttpClient()");

if (url == null)
throw new IOException("URL is null");

HttpGet httpget = new HttpGet(url);
httpget.addHeader("Accept", mimetype);
httpget.addHeader("Cookie", authenticationCookie);
httpget.addHeader("Accept-Encoding", "gzip");
HttpResponse response = client.execute(httpget);

InputStream instream = response.getEntity().getContent();
Header contentEncoding = response.getFirstHeader("Content-Encoding");

if (contentEncoding != null && contentEncoding.getValue().equalsIgnoreCase("gzip")) {
instream = new GZIPInputStream(instream);
}

return instream;
}

关于android - 存储用户凭据的更好方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8685366/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com