“Permitir x_frame_options django” Código de respuesta

Permitir x_frame_options django

X_FRAME_OPTIONS = 'ALLOW-FROM https://example.com/'
Obedient Osprey

Permitir x_frame_options django

from django.http import HttpResponse
from django.views.decorators.clickjacking import xframe_options_exempt

@xframe_options_exempt
def ok_to_load_in_a_frame(request):
    return HttpResponse("This page is safe to load in a frame on any site.")
Obedient Osprey

Permitir x_frame_options django


from django.http import HttpResponse
from django.views.decorators.clickjacking import xframe_options_exempt

@xframe_options_exempt
def ok_to_load_in_a_frame(request):
    return HttpResponse("This page is safe to load in a frame on any site.")

Black Buzzard

Respuestas similares a “Permitir x_frame_options django”

Preguntas similares a “Permitir x_frame_options django”

Más respuestas relacionadas con “Permitir x_frame_options django” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código