私は初心者です。私はAJAX経由で、ログインしたユーザーの状態から生成されたトークンを送信しようとしています。しかし、以下のコードを実行すると、内部サーバーエラーが発生するため、何かがオフになります。私は何が欠けていますか?AJAXコードに問題があります(Firebaseトークンをサーバーに送信しています)?
app.post('/auth', function(req,res,next){
var idToken =
admin.auth().verifyIdToken(idToken)
.then(function(decodedToken) {
var uid = decodedToken.uid
console.log(uid)
res.send(uid)
}).catch(function(error) {
console.log(error.message)
})
})
$("#sign-in").on('click', function(event) {
event.preventDefault()
var email = $("#email").val()
var password = $("#password").val()
firebaseAUTH.signInWithEmailAndPassword(email, password).then(function (user) {
console.log('user has signed in with e-mail address: '+user.email+' and user ID: '+user.uid)
//window.location = '/members-area'
firebaseAUTH.currentUser.getToken(true).then(function(idToken) {
$.ajax(
{
url: '/auth',
type: 'POST',
data: idToken,
success: function (response){
console.log('sent successfully')
console.log(uid)}
}
)
console.log(idToken)
// Send token to your backend via HTTPS (JWT)
}).catch(function(error) {
// Handle error
console.log(error.message)
})
}).catch(function(error) {
$('#errorbox').html('Error: '+error.message).css('color', 'red')
})
})
それを送信する必要がありますリクエストボディ
と、クライアント側から値を取得する必要がありますエラーメッセージとは何ですか? – acdcjunior
500内部エラー。クライアント側がそれをスローします – huzal12