Getting Started
The Platform SDK allows developers to access features of Meta's store and online services, for example:
User profiles (including authentication and checking entitlement)
In-App Purchases (IAP)
Downloadable Content (DLC)
Friends, Parties, and Group Presence
Achievements
Leaderboards
... and much more!
Before you can use the Platform SDK, you need to:
Create a developer account for Meta Quest.
Create an app within the Meta Quest Developer Dashboard.
Visit the "API" tab within the developer dashboard for your app, and make note of your "App ID" - you'll need this to initialize the Platform SDK.
Make a release build of your application, using the real "Unique Name" and release keystore. At this point, your application probably doesn't do much, which is fine.
Upload this build using the Meta Quest Developer Hub to the ALPHA channel.
Complete a Data Use Checkup (DUC), including all the features of the Platform SDK you intend to use. You won't have access to any features you don't include in your DUC.
Wait for your DUC to be approved.
Note
Many features of the Platform SDK require your exported project to have permission to access the internet. To grant this, open up Export Settings and navigate to the Permissions section of your android export. Ensure the Internet option is checked.
After that process is complete, you'll be able to use the Platform SDK:
func setup_meta_platform_sdk():
var result: MetaPlatformSDK_Message
# Replace "1234" with your App ID.
result = await MetaPlatformSDK.initialize_platform_async("1234").completed
if result.is_error():
print("Unable to initialize the platform SDK: ", result.error)
return
# Check that the user owns this app and is entitled to use it.
result = await MetaPlatformSDK.entitlement_get_is_viewer_entitled_async().completed
if result.is_error():
print("The user isn't entitled: ", result.error)
return
# Get the list of the user's friends who also own this app.
# NOTE: This will only work if you requested access to "Friends" on your DUC (see earlier instructions).
result = await MetaPlatformSDK.user_get_logged_in_user_friends_async().completed
if result.is_error():
print("Unable to get friends: ", result.error)
return
print("My friends:")
for user in result.data:
print("- ", user)
If you'd like to see more examples of using the Meta Platform SDK in a Godot project, be sure to check out the Godot Meta Toolkit Demo. Source code for the project can be found on GitHub.
For more information, see the API docs for the MetaPlatformSDK singleton. It's the entry point for doing anything with the Meta Platform SDK.