gpt4 book ai didi

android - 使用 Volley Android 使用 csrf token 访问

转载 作者:太空狗 更新时间:2023-10-29 13:11:48 28 4
gpt4 key购买 nike

我想发送一个请求并从它的 cookie 中获取 XSRF-TOKEN,当我将 POST 发送到寄存器时,我想将它放入 header 中。其实我想做这样的事情:access laravel app from android app with csrf token

我正在使用 StringRequest 发送这样的请求:

private void registerUser(final String name, final String email,
final String password,final String confirm) {
// Tag used to cancel the request
String tag_string_req = "req_register";

pDialog.setMessage("Registering ...");
showDialog();

final StringRequest strReq = new StringRequest(Request.Method.POST,
AppConfig.URL_REGISTER, new Response.Listener<String>() {

@Override
public void onResponse(String response) {

datares = response;

Log.d("REGISTER RESPONSE", "Register Response: " + response.toString());

}, new Response.ErrorListener() {

@Override
public void onErrorResponse(VolleyError error) {
Log.e(TAG, "Registration Error: " + error.getMessage());
Toast.makeText(getActivity().getApplicationContext(),
error.getMessage(), Toast.LENGTH_LONG).show();
hideDialog();
}
}) {

@Override
protected Map<String, String> getParams() {
// Posting params to register url
Map<String, String> params = new HashMap<String, String>();
params.put("name", name);
params.put("email", email);
params.put("password", password);
params.put("password-confirm",confirm);

return params;
}

};
// Adding request to request queue
AppController.getInstance().addToRequestQueue(strReq, tag_string_req);
}

和 AppController.java

public static synchronized AppController getInstance() {
return mInstance;
}

public RequestQueue getRequestQueue() {
if (mRequestQueue == null) {
mRequestQueue = Volley.newRequestQueue(getApplicationContext());
}

return mRequestQueue;
}

public <T> void addToRequestQueue(Request<T> req, String tag) {
req.setTag(TextUtils.isEmpty(tag) ? TAG : tag);
getRequestQueue().add(req);
}

你知道我怎样才能用 Volley 做到这一点吗?

最佳答案

这是一个迟到的答案。无论如何,如果有人在这里偶然发现任何答案,我会在这里添加其中一种方法:)

您可以使用 csrf_exempt。它将免除 CSRF 考虑的观点。我不确定这是否是一个主要的安全风险,但它确实有效。

from django.views.decorators.csrf import csrf_exempt

# Create your views here.
from django.http import HttpResponse

@csrf_exempt
def homePageView(request):
data = request.POST.get('data')
return HttpResponse(data)

关于android - 使用 Volley Android 使用 csrf token 访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39690781/

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