How to leave access to my API open for consultation

Asked

Viewed 50 times

-1

I have an application built in Angular2+ and I need to leave an open route for external consultation, without having to log in to the application:

Java resource

@GetMapping("/clientes/consulta/{identificador}")
    @PreAuthorize("hasAuthority(\"" + AuthoritiesConstants.ANONYMOUS + "\")")
    public ResponseEntity<ClienteDTO> getClienteByIdentificador(@PathVariable String identificador) {
        log.debug("REST request to get Cliente by identificador : {}", identificador);
        Optional<ClienteDTO> clienteDTO = clienteService.findByIdentificador(identificador);
        return ResponseUtil.wrapOrNotFound(clienteDTO);
    }

service TS

public resourceUrl = SERVER_API_URL + 'api/clientes';
findByIdentificador(identificador: string): Observable<EntityResponseType> {
    return this.http.get<ICliente>(`${this.resourceUrl}/consulta/${identificador}`, { observe: 'response' });}

Security Configuration

.antMatchers("/api/clientes/**").permitAll()
  • So it works, I found here. You need to put up the line that asks for authenticity for the whole api. Then this route will not ask for more authentication. . antMatchers("/api/clients/").permitAll() . antMatchers("/api/").authenticated()

1 answer

0

Good afternoon,

I have an Angular application and set the url of each class in the service layer.

Example:

product.service.ts

import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs';
import { Produto } from '../models/produto.model';
@Injectable({
  providedIn: 'root'
})
export class ProdutoService {
  url = 'http://localhost:56133/api/Produto';
  httpOptions = {
    headers: new HttpHeaders({ 'Content-Type': 'application/json' })
  }
  constructor(private http: HttpClient) { }
  //Selecionar todos produtos
  getProdutos() : Observable<Produto[]>{
    return this.http.get<Produto[]>(this.url);
  }

  //Apagar produto
  deleteProduto(produto: Produto) {
    return this.http.delete<Produto>(this.url + '/' + produto.id, this.httpOptions)
  }

  //Adicionar produto
  addProduto(produto: Produto): Observable<Produto> {
    return this.http.post<Produto>(this.url, JSON.stringify(produto), this.httpOptions)
  }

  //Atualiza um carro
  updateProduto(produto: Produto): Observable<Produto> {
    return this.http.put<Produto>(this.url + '/' + produto.id, JSON.stringify(produto), this.httpOptions)  
  }
}

Github https://github.com/rodrigofurlaneti/vendas-ng/tree/master/vendas-ng/src/app

Browser other questions tagged

You are not signed in. Login or sign up in order to post.