-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing examples of how to get titleId from universalSearch #88
Comments
This should give you some idea. I haven't included the |
OK, so I've recreated the endpoint that @isFakeAccount mentioned and goddamn, the "massive dict" statement wasn't a joke. Good news and bad news, let's start with the bad ones since it's quicker to get through: Bad news: I can't seem to find the trophy list unique identifier (which I assumed is what you wanted to get, in order to use the other commands?). Those follow the format Good news: this endpoint returns A LOT of information, which can be really useful if you want to build something else entirely, like a games library or have the PSN Store Rating attached to your trophy lists or whatever else you might want. I'll paste below the first result for the search "dark souls":
@isFakeAccount I don't know if you care about this, but removing the parameters for The only thing that made any difference in my results was changing @GusAV did this answer your question? Sorry about the tangent. |
I'm very much interested in this. Was also looking for a way to search for games and not have to iterate over users their profile and hope to find the corresponding game(s). I'll follow this request. |
Keep in mind that this is the data you get back and that you can only follow up from this to find the related trophy list using the endpoint for #122, but you won't be able to get the trophies for the game unless you are scanning an account that has synced the game to their profile. In case the trophy list matters for your final objective. |
Yes, I'm aware. I'm working on a Discord bot for a PlayStation community. So other than having to iterate over people's profiles and hoping I can find a game to get details for it, just being able to query the API for the game itself would be much more ideal. That's why I'm interested in this feature ;) |
Hi, I'm trying to understand how do you get a Title Id from the universal search since all requests require the Title Id and not the Title Name, the only example I see as option is "SocialAllAccounts", but I'm not aiming to make searches on users, just games.
I know one option is to get the titles for the user and iterate through all of them, making extra requests for the pagination, but this feels pretty much overkill to just find a title Id.
Appreciate the help, thanks.
The text was updated successfully, but these errors were encountered: