Active game session info #98
-
Beta Was this translation helpful? Give feedback.
Answered by
isFakeAccount
Feb 25, 2025
Replies: 1 comment 1 reply
-
|
Yes, it is possible via user.basic_presence The output of get presence will be like this {
"accountId": "940512162723934331",
"availability": "availableToPlay",
"primaryPlatformInfo": {
"onlineStatus": "online",
"platform": "PS5"
},
"gameTitleInfoList": [
{
"npTitleId": "CUSA14296_00",
"titleName": "Rust",
"format": "PS4",
"launchPlatform": "PS5"
}
]
}Admittedly it is a bit inefficient at the moment since basic presence accepts multiple account ids as params. I will move this function to client class next version most likely. Edit: Looks like I am missing a param in url which is See issue #99 |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
vvxdc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Yes, it is possible via user.basic_presence
The output of get presence will be like this
{ "accountId": "940512162723934331", "availability": "availableToPlay", "primaryPlatformInfo": { "onlineStatus": "online", "platform": "PS5" }, "gameTitleInfoList": [ { "npTitleId": "CUSA14296_00", "titleName": "Rust", "format": "PS4", "launchPlatform": "PS5" } ] }Admittedly it is a bit inefficient at the moment since basic presence accepts multiple account ids as params. I will move this function to client class next version most likely.
Edit: Looks like I am missing a param in url whi…