【发布时间】:2018-11-15 18:17:18
【问题描述】:
@api_view(['GET'])
def gatewayentities_list(request,format=None):
requestMeta = request.META
if ('HTTP_AUTHORIZATION' not in requestMeta.keys()):
return JSONResponse({"status": "UNAUTHORIZED"}, status=401)
elif (requestMeta['HTTP_AUTHORIZATION'] is not None):
headerParameters = requestMeta['HTTP_AUTHORIZATION'].split(" ")
companyid_id = headerParameters[2]
apikey = headerParameters[0]
userId = headerParameters[3]
try:
applicationid = int(headerParameters[4])
except IndexError:
applicationid = 0
{'Transfer-Encoding': 'chunked', 'Vary': 'Cookie', 'Server': 'Apache/2.2.29 (Amazon)', 'Connection': 'close', 'Date': 'Wed, 06 2018 年 6 月 06:50:09 GMT', 'Content-Type': 'text/html; charset=UTF-8'}
Server Error (500)
任何帮助将不胜感激!
【问题讨论】:
-
寻找 curl 命令来解决这个问题