def verification_token(request, file):
"""
Handles the request for SSL token.
"""
with open(settings.BASE_DIR + '/Plamber/{}'.format(file), 'r') as data:
return HttpResponse(data.read(), content_type='text/plain')
评论列表
文章目录