У меня есть этот проект, где я установил паспорт и vue с laravel. У меня есть свои конечные точки аутентификации, но сейчас я изо всех сил пытаюсь заставить эти конечные точки работать с моей внешней стороной проекта.
Поэтому, когда я установил Laravel, я использую commend php artisan ui vue --auth для создания моих логинов / регистрирующих скаффолдингов.
Конечные точки api находятся в файле api. php
Это часть моего кода из AuthController. php:
public function login(ApiLoginRequest $request){
//debug
//return $request;
$credentials = $request->only(['email', 'password']);
$authAttempt = auth()->attempt($credentials);
if(!$authAttempt){
return response([
'error' => 'Access forbidden',
'message' => 'Please check your email and password'
], 403 );
}
//debug result needs to be true
// return response([
// 'debug response' => $authAttempt
// ]);
$http = new Client();
$response = $http->post( 'http://laravel-xyzhub.test/oauth/token', [
'form_params' => [
'grant_type' => 'password',
'client_id' => $this->CLIENT_ID,
'client_secret' => $this->CLIENT_SECRET,
'username' => $request->email,
'password' => $request->password,
'scope' => ''
]
]);
return json_decode((string) $response->getBody(), true );
}
Код для шаблона vue:
<template>
<div class="mx-aut h-full flex justify-center items-center bg-gray-800">
<div class="w-96 bg-green-400 rounded-lg shadow-xl p-6" >
<div class="text-center text-white uppercase">
<h1 class="font-extrabold text-6xl">XYZ HUB</h1>
<h1 class="text-3xl pt-8">Welcome Back</h1>
<h2 class="pb-8 text-xs">Enter your credentials below</h2>
</div>
<!-- form -->
<form class="pb-8" @submit.prevent="postNow" ref="LoginForm" method="post">
<div class="relative">
<label for="email" class="uppercase text-green-400 font-bold absolute pl-3 pt-2">Email</label>
<div class="">
<input id="email" type="email" class="pt-8 w-full rounded p-3 text-green-700" name="email" v-model="credentials.email" autocomplete="email" autofocus placeholder="your@email.com">
</div>
</div>
<div class="relative pt-6">
<label for="password" class="uppercase text-green-400 font-bold absolute pl-3 pt-2">Password</label>
<div class="">
<input id="password" type="password" class="pt-8 w-full rounded p-3 text-green-700" name="password" v-model="credentials.password" placeholder="password">
</div>
</div>
<div class="pt-8">
<button type="submit" class="uppercase font-bold rounded w-full bg-white text-green-400 py-2 px-3 text-2xl" v-on:click="loginUser">Login</button>
</div>
<div class="flex justify-center pt-8 text-white uppercase font-semibold text-sm">
<a :href="recover"> Forget Password </a>
</div>
<div class="flex justify-center pt-2 text-white uppercase font-semibold text-sm">
<a :href="register"> Register </a>
</div>
</form>
</div>
</div>
<script>
export default {
data(){
return {
credentials:{
email: '',
password: ''
}
}
},
methods:{
postNow(event){
console.log("event" , {event , $form: this.$refs.LoginForm});
axios.post('/api/login' , this.credentials)
.then( response => {
console.log ('response' , response.data); router.push("/register");
})
.catch( error => {
console.log("error", error.response);
})
}
}
}
Я знаю, что мой код в шаблоне не правильно просто не уверен, что я делаю не так ... Любая помощь будет высоко ценится. Заранее спасибо
ОБНОВЛЕНИЕ: Поэтому, если я удаляю предупреждение в форме и добавляю перенаправление после получения ответа, то внезапно моя отправка не go -
<form class="pb-8" @submit.prevent="postNow" ref="LoginForm" method="post">
измените его на
<form class="pb-8" @submit="postNow" ref="LoginForm" method="post">
Как вы заметили, моя конечная точка также не совсем верна
Действительно перепутано с все это ...