React Native (expo) + Django JWT axios error

Пытаюсь сделать экран входа в систему. Использую axios для получения данных из Django JWT url('http://127.0.0.1:8000'). Пытался найти url работает из Postman и также из терминала и оба работали, но я получил AxiosError из симулятора. Кто-нибудь знает, почему мой базовый url не работает на React Native App? Я пробовал 'http://localhost:3000/' и 'http://10.0.2.2:8000' тоже, но не работает.

Это мой Кодекс...

LoginScreen.js

const LogInScreen = () => {
  const [email, setEmail] = useState("");
  const [password, setPassword] = useState("");

  const handleSubmit = (e) => {
    e.preventDefault();
    const config = {
      headers: {
        "Content-Type": "application/json",
      },
    };
    const body = JSON.stringify({ email, password });
    axios
      .post("http://127.0.0.1:8000/api/token/", body, config, console.log(body))
      .then((res) => {
        console.log("token");
        AsyncStorage.setItem("access_token", res.data.access);
        AsyncStorage.setItem("refresh_token", res.data.refresh);
        axiosInstance.defaults.headers["Authorization"] =
          "JWT " + AsyncStorage.getItem("access_token");
        navigate("Home");
        console.log(res);
        console.log(res.data);
      })
      .catch((error) => console.log("error", error));
  };

console.log(body) показал {"email": "test@mail.com", "password": "Test1234"} console.log('token') не появился, а часть 'error' выскочила.

Django urls.py

from django.contrib import admin
from django.urls import path
from django.conf.urls import include
from rest_framework_simplejwt.views import (
    TokenObtainPairView,
    TokenRefreshView,
)

urlpatterns = [
    path('admin/', admin.site.urls),
    path('api-auth/', include('rest_framework.urls', namespace='rest_framework')),
    path('api/token/', TokenObtainPairView.as_view(), name='token_obtain_pair'),
    path('api/token/refresh/', TokenRefreshView.as_view(), name='token_refresh'),
    path('api/user/', include('api_user.urls')),
    path('api/flashcard/', include('api_card.urls')),
]

settings.py

терминал работает, так что я думаю, что проблема в части React Native expo app...

$ curl -d '{"email":"test@mail.com" , "password": "Test1234"}' -H "Content-Type: application/json" "http://127.0.0.1:8000/api/token/"
{"refresh":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9....","access":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...."
Вернуться на верх