Ao acessar a url http://localhost:8080/api/public/fotos/rafael, copiar os dados, colar no JSONLint e ao tentar acessar a link da propriedade urlPerfil a página está me retornando Access Denied, mesmo já tendo gerado os dados previamente. Por causa disso estou tendo o Warning " Network request failed" no .catch da fetch, e só aparece uma tela branca
componentDidMount() {
fetch('http://localhost:8080/api/public/fotos/rafael')
.then(resposta => resposta.json())
.then(json => this.setState({fotos: json}))
.catch(error => console.warn('ERROR = ' + error))
}
export default class Post extends Component {
render() {
return (
<View>
<View style = {styles.cabecalho}>
<Image source = {{uri: this.props.foto.urlPerfil}} style = {styles.foto_de_perfil}/>
<Text>{this.props.foto.loginUsuario}</Text>
</View>
<Image source = {{uri: this.props.foto.urlFoto}} style = {styles.foto}/>
</View>
);
}
}