You can send your users into the Revlum offer wall just by opening a link. You can configure the behavior of the offer wall and what should happen after a offer is completed on the Revlum dashboard in the Website Settings.
This is where you will need the API key from the dashboard, as you will need to replace "API_KEY"
with it. For " USER_ID"
, you will need to dynamically insert the user id for each app user. Make sure the id used here is unique and that it does not change, as the user's profile will be stored under this id.
WebView myWebView = new WebView(activityContext);
setContentView(myWebView);
WebSettings webSettings = myWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
myWebView.loadUrl("https://revlum.com/offerwall/[API_KEY]/[USER_ID]");
Parameter |
Description |
Value |
[API_KEY]
|
Unique API Code provided when you registered your website |
varchar(32) |
[USER_ID]
|
Unique identifier code of the user of your site |
varchar(32) |