Advanced Search
Search Results
18 total results found
Callbacks
The Callback is the basis by which you can reward your users. The Callback is a GET request that is sent to your processing script upon the conclusion of a transaction - either a complete COMPLETE, screenout TERMINATION, or overquota QUOATAFULL. This request ...
Redirects
We support two separate links, one for successful completes, one for everything else If you’d like to setup custom redirect URLs, contact your Rapidoreach account manager. We don’t support redirect hashing; we use secure hasing in our system-to-system Callbac...
User Ids
Iframe The Reward Center is an iframe embedded on your site containing a list of incentivized surveys and offers. It’s one of our simplest products to integrate and requires zero maintenance. Engage your audience with these earning opportunities and get paid...
Generate the User Ids
Generate the User ID First things you’ll need are the UID ingredients. The Internal User ID (for each of your users), App ID, and Security Key. internalUserID = User123 appID = 1sJ57hgit securityKey = 838ab4b72d221a585af8b4be7a540234 Generate an md5 hash o...
Embed offerwall iframe
Creating your Rewards Center iFrame is easy and simple. You just need a page with enough space to run it on your webpage/webapp. You’ll need to dynamically generate the Rewards Center link based on the RapidoReach UID. This ensures that every user gets the ri...
iOS SDK
RapidoReach iOS Integration Guide Get Your API Key Sign-up for a new developer account and create a new iOS app here and copy your API Key. Install SDK Install via Cocoapods (easiest) pod 'RapidoReachSDK', :git => 'https://github.com/skondgekar/rorios...
Android SDK
RapidoReach Android Integration Guide Get Your API Key Sign-up for a new developer account and create a new Android app here and copy your API Key. Download the SDK Download the latest version of the Android SDK here. Add the RapidoReach-1.0.0.aar file to ...
Unity SDK
RapidoReach Unity Integration Guide Get Your API Key Sign-up for a new developer account and create a new Unity app here and copy your API Key. Download the Plugin Download the latest version of the RapidoReach Unity Plugin here. Import the Unity Package ...
React Native SDK
@rapidoreachsdk/react-native-rapidoreach Before you start Get your API key Sign-up for a new developer account and create a new app here and copy your API Key. Getting started $ npm install @rapidoreachsdk/react-native-rapidoreach $ yarn add react-native...
Flutter SDK
flutter_rapidoreach A plugin for Flutter that supports rendering surveys using RapidoReach SDKs. You can install rapidoreach flutter plugin from here Note: RapidoReach iOS SDK utilizes Apple's Advertising ID (IDFA) to identify and retarget users with RapidoR...
Reconcillations reports API
RapidoReach Publisher API Guide Reconcialation Report API Method: GET URL: http://www.rapidoreach.com/api/v1/reconciliations/{{publisher_id}}/{{app_id}}?key={{app_api_key}}&limit=3&skip=2 Params publisher_id: Publisher User id app_id: App id Query app...
Setup master and worker node VM's
Setup VPS and install docker (all nodes) Refer: https://projects-srv2.kondgekar.com/projects/cbofferwall/wiki/0000-preliminary-setup Fix swap (all nodes) Installing kubernetes needs swap should be disabled. Check if swap is enabled and then disable if swap ...
Setting up persistant storage using OpenEBS
Install iSCSI on all nodes Refer: https://docs.openebs.io/docs/next/prerequisites.html Install iSCSI tools if not installed sudo apt-get update sudo apt-get install open-iscsi sudo systemctl enable --now iscsid Check if iSCSI is running sudo systemctl s...
Create service account
Ref: https://computingforgeeks.com/create-admin-user-to-access-kubernetes-dashboard/ admin-sa.yml --- apiVersion: v1 kind: ServiceAccount metadata: name: techiterian-cluster-admin namespace: kube-system --- apiVersion: rbac.authorization.k8s.io/v1...
Accessing Kubernetes Dashboard
To install kubernetes dashboard on master node make sure to install it before worker nodes join k8s cluster. Obtain login token for service account (on master) SA_NAME="<service-account-name>" # eg SA_NAME="techiterian-cluster-admin" to print token kubect...
Deploy private docker registry in kubernetes
Step 1: Creating files for authentication Make a folder and open terminal within a folder created mkdir registry cd registry Create tls certificate and a key openssl req -x509 -newkey rsa:4096 -days 3650 -nodes -sha256 -keyout certs/tls.key -out certs/tls...
Installation of Ingress nginx
Refer: https://github.com/kubernetes/ingress-nginx Install using baremetal Refer: https://kubernetes.github.io/ingress-nginx/deploy/#bare-metal Download script to specific folder cd <folder-path> wget https://raw.githubusercontent.com/kubernetes/ingress-n...
Host Docker private registry using Ingress
Make sure ingress nginx is installed and following command shows external Ip assigned kubectl get services -o wide -n ingress-nginx if external ip is not assigned then nginx controller needs modifications. Refer: Ingress installation Create ingress prd-i...