Commit e58e295c by jagonzalr Committed by Jose Antonio Gonzalez

fix valid signature

parent 6a244a3f
......@@ -885,8 +885,10 @@ class SoftwareSecurePhotoVerification(PhotoVerification):
"Content-Type": "application/json",
"Date": formatdate(timeval=None, localtime=False, usegmt=True)
}
body_for_signature = {"EdX-ID": str(self.receipt_id)}
_message, _sig, authorization = generate_signed_message(
"POST", headers, body, access_key, secret_key
"POST", headers, body_for_signature, access_key, secret_key
)
headers['Authorization'] = authorization
......
......@@ -1109,13 +1109,15 @@ def results_callback(request):
headers = {
"Authorization": request.META.get("HTTP_AUTHORIZATION", ""),
"Content-Type": "application/json",
"Date": request.META.get("HTTP_DATE", "")
}
body_for_signature = {"EdX-ID": body_dict.get("EdX-ID")}
has_valid_signature(
"POST",
headers,
body_dict,
body_for_signature,
settings.VERIFY_STUDENT["SOFTWARE_SECURE"]["API_ACCESS_KEY"],
settings.VERIFY_STUDENT["SOFTWARE_SECURE"]["API_SECRET_KEY"]
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment