Получить TOKEN auth2 - данные клиента POST - неверный запрос - PullRequest
0 голосов
/ 16 апреля 2019

У меня возникла проблема (404: неверный запрос) при использовании токена API в моем приложении APP.В почтовом отделе это работает очень хорошо

  const requestOptions = {
            method: 'POST',
            mode: "no-cors", // no-cors, cors, *same-origin
            cache: "no-cache", // *default, no-cache, reload, force-cache, only-if-cached
            credentials: "include", // include, *same-origin, omit
            redirect: "follow", // manual, *follow, error
            referrer: "no-referrer", // no-referrer, *client
            headers: {
            },
            body: JSON.stringify({
                "client_id": "1_15dpzlnknhtwk8sgo4gwo800okogc4g00gk4k04g4g0cgc0ww0",
                "client_secret": "dc86f30rr6okw8w84c8owkcko08s4k8k4c4c4k04osow8skko",
                "grant_type": "password",
                "username": "demoUsername",
                "password": "demoPassword"
            })
        };

fetch('http://localhost:8000/oauth/v2/token', requestOptions)
    .then(function(response) {
        console.log('response');
        console.log(response);

    })
    .then(function(myJson) {
        console.log(JSON.stringify(myJson));
    });

результат:

enter image description here

enter image description here

это мой security.yml

enter image description here

1 Ответ

0 голосов
/ 17 апреля 2019

Это проблема header.the заголовок пуст, теперь он работает

...