""" 云平台外部接口 """ import config import requests def queryStudentAnswer(examRecordDataId): url=config.domain+"/api/ecs_oe_admin/examRecordQuestions/getExamRecordQuestions" header={ "key":config.key, "token":config.token } params={ "examRecordDataId":examRecordDataId } result=requests.get(url=url,headers=header,params=params) if result.status_code==200: return result.json() else: return None