signinFetch('http://192.xxx.x.x:8000/api/branch-api/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({
grant_type: 'password',
client_id: OAUTH_CLIENT_ID,
client_secret: OAUTH_CLIENT_SECRECT,
email: this.props.email,
password: this.props.password,
scope: ''
})
})
.then((response) => {
console.log(response);
})
.catch((error) => {
console.log(error);
});
не может вызвать API входа в систему с физического устройства до локального хоста .Но я могу отладить приложение на локальном хосте , тогда почему я не получаю ответ от локального API
Я пытался