diff --git a/.gitignore b/.gitignore index e6e5495..b2b6173 100644 --- a/.gitignore +++ b/.gitignore @@ -25,4 +25,5 @@ staging zero .coverage example.py -randomTester.py \ No newline at end of file +randomTester.py +venv/ \ No newline at end of file diff --git a/rave_python/rave_payment.py b/rave_python/rave_payment.py index bd8fd94..833c475 100644 --- a/rave_python/rave_payment.py +++ b/rave_python/rave_payment.py @@ -128,9 +128,9 @@ def _handleChargeResponse(self, response, txRef, request=None, isMpesa=False): # if all preliminary tests pass if not ( responseJson["data"].get( - "chargeResponseCode", + "response_code", None) == "00"): - if responseJson.get("message", 'None') == 'Momo initiated': + if responseJson.get("response_message", 'None') == 'Momo initiated': return { "error": False, "status": responseJson["status"], @@ -145,14 +145,14 @@ def _handleChargeResponse(self, response, txRef, request=None, isMpesa=False): "status": responseJson["status"], "validationRequired": True, "txRef": txRef, - "flwRef": responseJson["data"]["flwRef"], - "chargeResponseMessage": responseJson["data"]["chargeResponseMessage"]} + "flwRef": responseJson["data"]["data"]["flw_reference"], + "chargeResponseMessage": responseJson["data"]["response_message"]} else: return { "error": True, "validationRequired": False, "txRef": txRef, - "flwRef": responseJson["data"]["flwRef"]} + "flwRef": responseJson["data"]["data"]["flw_reference"]} def _handleCaptureResponse(self, response, request=None): """ This handles transaction charge responses """