You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8Lines changed: 8 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,6 +100,10 @@ In the calling activity, override the `onActivityResult` method to receive the p
100
100
101
101
@Override
102
102
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
103
+
/*
104
+
* We advise you to do a further verification of transaction's details on your server to be
105
+
* sure everything checks out before providing service or goods.
106
+
*/
103
107
if (requestCode == RaveConstants.RAVE_REQUEST_CODE && data != null) {
104
108
String message = data.getStringExtra("response");
105
109
if (resultCode == RavePayActivity.RESULT_SUCCESS) {
@@ -118,6 +122,10 @@ In the calling activity, override the `onActivityResult` method to receive the p
118
122
}
119
123
The intent's `message` object contains the raw JSON response from the Rave API. This can be parsed to retrieve any additional payment information needed.
120
124
125
+
> **PLEASE NOTE**
126
+
> We advise you to do a further verification of transaction's details on your server to be
127
+
sure everything checks out before providing service or goods.
128
+
121
129
### 3. Customize the look
122
130
You can apply a new look by changing the color of certain parts of the UI to highlight your brand colors
0 commit comments