让我解释一下我的情况,我在 Symfony2.1 中为一个运行良好的 Android 应用程序开发了一个完整的后端,现在我正在尝试创建 Android 应用程序部分,为此我创建了一个带有 http_basic 身份验证的防火墙,以确保我的用户是经过正确的身份验证和授权,我实际上可以使用我的应用程序并被登录,但是如果我尝试检索防火墙后面的任何页面,则会出现 404 错误。
我不想使用任何外部包,我只想发送我的用户/传递每个请求,因为我的应用程序只进行了三个 httpclient 调用,但我不知道如何获得对每个请求的访问权限。
这是我的代码的一部分,请随时询问:) 提前致谢!
我的 Android http 调用:
@Override protected String doInBackground(Void... arg0) {
HttpClient httpClient = new DefaultHttpClient();
// construir peticion get
HttpGet httpGet = new HttpGet("http://www.somewebsite.com/api/login/");
httpGet.addHeader(BasicScheme.authenticate(
new UsernamePasswordCredentials(loguser, passw), "UTF-8",
false));
try {
response = httpClient.execute(httpGet);
reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
builder = new StringBuilder();
for(String line = null; (line = reader.readLine()) != null;){
builder.append(line).append("\n");
}
} catch (Exception e) {
e.printStackTrace();
alert("Error de protocolo", "Lo sentimos, ha ocurrido un error");
}
return builder.toString();
}
我的防火墙
api:
pattern: ^/api/.*
provider: app_user
http_basic:
realm: "API"
access_control:
- { path: ^/api-registro/, role: IS_AUTHENTICATED_ANONYMOUSLY }
- { path: ^/api/.*, role: ROLE_API }
providers:
app_user:
entity: { class: Alood\BackBundle\Entity\Usuario, property: user }
encoders:
Alood\BackBundle\Entity\Usuario: plaintext
我的控制器
public function apiLoginAction()
{
$peticion = $this->getRequest();
$sesion = $peticion->getSession();
$usuario = $this->get('security.context')->getToken()->getUser();
$error = $peticion->attributes->get(SecurityContext::AUTHENTICATION_ERROR,
$sesion->get(SecurityContext::AUTHENTICATION_ERROR));
$securityContext = $this->container->get('security.context');
if( $securityContext->isGranted('IS_AUTHENTICATED_FULLY')){
$texto["user"] = $usuario->getUser();
return new JsonResponse($texto);
}
}
注意:如果我在控制器的不同功能中重复相同的步骤,我会在我的 android 应用程序中遇到问题,我不知道如何解决这个问题。