所以我正在尝试登录我的应用程序,当我在插入用户名和密码后单击登录按钮时,此错误会出现在Android工作室左侧底部工具栏上的运行选项卡中:
E/Volley: [11996] BasicNetwork.performRequest: Unexpected response code 301 "MYURL"
使用我的网站链接,仅此而已。 您可以了解有关错误HTTP 301 here的更多信息! 这是我的代码:
import android.app.AlertDialog;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.EditText;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.toolbox.Volley;
import org.json.JSONException;
import org.json.JSONObject;
public class login extends Fragment{
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View mView = inflater.inflate(R.layout.login, container, false);
final EditText etUtilizador = mView.findViewById(R.id.etUtilizador);
final EditText etPassword = mView.findViewById(R.id.etPassword);
final Button btLogin = mView.findViewById(R.id.btLogin);
Button btlink = mView.findViewById(R.id.btlink);
btlink.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent registerIntent = new Intent(getActivity(), registar.class);
getActivity().startActivity(registerIntent);
}
});
btLogin.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
final String username = etUtilizador.getText().toString();
final String password = etPassword.getText().toString();
Response.Listener<String> responselistener=new Response.Listener<String>() {
@Override
public void onResponse(String response) {
JSONObject jsonResponse= null;
try {
jsonResponse = new JSONObject(response);
boolean success = jsonResponse.getBoolean("success");
if (success) {
String name = jsonResponse.getString("name");
int age = jsonResponse.getInt("age");
Intent intent;
intent = new Intent(getContext(), utilizador.class);
intent.putExtra("name", name);
intent.putExtra("age", age);
intent.putExtra("username", username);
login.this.startActivity(intent);
} else {
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
builder.setMessage("Login Failed")
.setNegativeButton("Retry", null)
.create()
.show();
}
} catch (JSONException e) {
e.printStackTrace();
}
}
};
loginrequest loginRequest = new loginrequest(username, password, responselistener);
RequestQueue queue = Volley.newRequestQueue(getActivity());
queue.add(loginRequest);
}
});
return mView;
}
}
import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.toolbox.StringRequest;
import java.util.HashMap;
import java.util.Map;
public class loginrequest extends StringRequest {
private static final String LOGIN_REQUEST_URL = "http://elabora.pt/login.php";
private Map<String, String> params;
public loginrequest(String username, String password, Response.Listener<String> listener) {
super(Request.Method.POST, LOGIN_REQUEST_URL, listener, null);
params = new HashMap<>();
params.put("username", username);
params.put("password", password);
}
@Override
public Map<String, String> getParams() {
return params;
}
}
如果您需要更多课程或下面的Android清单评论,我编辑帖子。
我已经有了login.php来连接文件管理器和数据库中的数据库。
如果你能帮助我理解为什么会出现这个错误,我将非常感激。
答案 0 :(得分:1)
HTTP代码301表示“永久移动”。这意味着您尝试访问的URL不再存在。当我的网站实施SSL时,我遇到了同样的问题。他们使用服务器中的.htaccess文件将所有请求从http://重定向到https://,因此Android应用程序中的地址必须进行相应更改,因为它不接受重定向。您应该将LOGIN_REQUEST_URL变量更改为:
private static final String LOGIN_REQUEST_URL = "https://elabora.pt/login.php";
希望这会有所帮助(尽管确实解决了我的问题)
答案 1 :(得分:0)
我有同样的问题。 Unexpected response code 301
我正在使用https://example.com,但是它是通过.htaccess重定向到https:// www.
example.com的
在应用代码中更改为https://www.example.com可以解决我的问题。
尝试在浏览器中打开URL,在这里您可以看到完全重定向的URL,并将其复制到代码中。
答案 2 :(得分:0)
当您使用 volley 时,您可以在主机或服务器中指定一个 http 文件夹,而不是自动重定向到 https。 看来 Volley 无法处理 https 请求。