/
Using Extra Fields with Android in Appoxee Standalone
Using Extra Fields with Android in Appoxee Standalone
Using Push Custom Fields
Sending custom push fields using the Appoxee web dashboard :
2. Sending custom push fields using the Appoxee server-to-server API –
Custom Fields addition highlighted in blue:
{
"campaign_name": "aa1","campaign_desc":"asd",
"application_id": 1121,
"sound": "",
"name": "Johnni",
"description": "mik mak",
"type": 0,
"content_type": 1,
"inbox_title": "Le Inbox",
"inbox_description": "messages go in here",
"push_body": "conversion rate booster number 6 ",
"push_badge": 1,
"schedule_type":0,
"timezone": "Asia/Jerusalem",
"overdue": 0,
"schedule_date": "1345645282",
"expire_date" : "1645645282",
"payload" : {
"custom_key1":"custom_value1",
"custom_key2":"custom_value2",
}
}
3. SDK Implementation (Download this SDK version http://engage.appoxee.com/eula)
This Code Block should be a part of your onCreate() and onNewIntent methods, in the activity defined to receive the push notification bundle.
Bundle bundle = intent.getExtras();
Set<String> keys = bundle.keySet();
for (String key : keys) {
Object o = bundle.get(key);
//Do what you need with object (as String)
}
3.2 For further information feel free to contact your support team at support@appoxee.com
, multiple selections available,
Related content
Using the Custom Fields in Android (Since SDK V2.0)
Using the Custom Fields in Android (Since SDK V2.0)
More like this
Initialize Appoxee SDK
Initialize Appoxee SDK
More like this
Step B: Appoxee Setup for Appoxee Standalone
Step B: Appoxee Setup for Appoxee Standalone
More like this
Push Message API
Push Message API
More like this
Extra fields
Extra fields
More like this
Custom Push Builder (since v2.4.1) for Appoxee Standalone
Custom Push Builder (since v2.4.1) for Appoxee Standalone
More like this