Meet the team behind ShepHertz Platform
Making a difference in the world together
People whose belief drives us forward
Enterprises & Developers from across the world
Access the ShepHertz Newsroom
800+ APIs. 25+ Modules. 16 SDKs.Real-time Actionable Analytics. 1 Platform.
Acquire. Engage. Retain. Convert.
Comprehensive Solution to Securely Expose Protected Resources as APIs
Real Time & Turn Based MultiplayerGaming Platform With Game Mechanics.
Develop > Deploy > launch > Scale > Monitor
Continuous Integration & Delivery
Customers Want A 360 °Omni-Channel Retail Experience.
Seamless & ConnectedOmni-Channel Experience Delivered.
Plethora of Games are LaunchedEvery Day. Don't Let Yours Die.
Leverage User Data to DeliverPersonalized Content Across Channels
Inspire Wanderlust in theCustomers with Omni-Channel Experience
800+ APIs. 25+ Modules. 16 SDKs. Real-time Actionable Analytics. 1 Platform.
Real Time & Turn Based Multiplayer Gaming Platform With Game Mechanics.
Forum
Hello Zveroid,
Kindly find the below code snippet to save the additional information of user through custom code:
JSONObject json = new JSONObject(); json.put("Name", "Nick"); json.put("Age", 25); JSONObject credentials = new JSONObject(); credentials.put("dbName", "Your db name"); credentials.put("collectionName", "Your collection name"); otherMetaHeaders.put("jsonObject", json.toString()); otherMetaHeaders.put("dbCredentials", credentials.toString()); mScoreBoardService.setOtherMetaHeaders (otherMetaHeaders); Game game = mScoreBoardService.saveUserScore(gameName,userName,gameScore);
JSONObject json = new JSONObject();
json.put("Name", "Nick");
json.put("Age", 25);
JSONObject credentials = new JSONObject();
credentials.put("dbName", "Your db name");
credentials.put("collectionName", "Your collection name");
otherMetaHeaders.put("jsonObject", json.toString());
otherMetaHeaders.put("dbCredentials", credentials.toString());
mScoreBoardService.setOtherMetaHeaders (otherMetaHeaders);
Game game = mScoreBoardService.saveUserScore(gameName,userName,gameScore);
Also, please have a look on this link for fetching the information back into the app through custom code and let us know if it helps.
Thanks
Himanshu Sharma