“permitir x_frame_options django” Respostas de código

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

Respostas semelhantes a “permitir x_frame_options django”

Perguntas semelhantes a “permitir x_frame_options django”

Mais respostas relacionadas para “permitir x_frame_options django” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código