После функции MongoDB FindOne () мне нужно взять ObjectID и использовать его в http.ResponseWriter
documento, err := bd.IntentoLogin(t.Email, t.Password)
if err != nil {
http.Error(w, "Usuario y/o Contraseña inválidos", 400)
return
}
jwtKey, err := jwt.GeneroJWT(t.Email)
if err != nil {
http.Error(w, "Ocurrió un error al intentar generar el Token correspondiente. "+err.Error(), 400)
return
}
resp := models.RespuestaLogin{
____________________________________
<<<<< Here I need to Include the ObjectID
____________________________________
Nombre: documento.Nombre,
Apellidos: documento.Apellidos,
Token: jwtKey,
}
w.Header().Set("Content-Type", "application/json")
w.WriteHeader(http.StatusCreated)
json.NewEncoder(w).Encode(resp)
Какой правильный синтаксис, если мне нужно добавить этот ObjectID в структуру JSON ?
Спасибо