Develop
Develop
Select your platform

Developer Posts

Developer post is a feature that enables you to help engage and grow your community. You provide content such as text and images to be displayed on an application’s product detail page (PDP). You can use these posts to highlight promotions and new content in your game.

Age-based feature limitations

When developing your apps, consider the following limitations related to age:
  • Child users under 13 (10-12 year olds): Regardless of your app’s self-certification status, child users under 13 cannot access this Platform SDK feature. Implement error-handling for this unsupported feature to maintain a safe and pleasant experience for child users.

Create a developer post

For steps to create a developer post, including how to use comments, merchandising shelves, and moderation tools, see Developer Posts in Distribute.
If you include a deep link in your post, make sure to implement a hook into your app that listens for a specific launch detail when the app is started.
  • ovrLaunchType_Deeplink
When you see these details in the launch event, your app will retrieve the deep link that you defined to direct the user to the appropriate location in your app.
For example:
ovrLaunchDetailsHandle handle = ovr_ApplicationLifecycle_GetLaunchDetails();
if (ovr_LaunchDetails_GetLaunchType(handle) == ovrLaunchType_Deeplink) {
 string deeplink = ovr_LaunchDetails_GetDeeplinkMessage(handle);
  // ...
}

Analytics

For information about developer posts analytics, see Developer Posts Analytics.
Did you find this page helpful?