Editing SEN Store
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 1: | Line 1: | ||
== PSN JSON Parser for PC == | == PSN JSON Parser for PC == | ||
This simple script | This simple script parse the online store json to an readable text. | ||
The json is here: (you need to connect to store.sonyentertainmentnetwork.com, to see the data) | The json is here: (you need to connect to store.sonyentertainmentnetwork.com, to see the data) | ||
<pre>https://store.sonyentertainmentnetwork.com/kamaji/api/chihiro/00_09_000/gateway/store/v1/users/me/internal_entitlements?fields= | <pre>https://store.sonyentertainmentnetwork.com/kamaji/api/chihiro/00_09_000/gateway/store/v1/users/me/internal_entitlements?fields=drm_def</pre> | ||
This can be useful to grab the free pkg to use with the [[ | This can be useful to grab the free pkg to use with the PKG Installer ([[Title_ID|NPXS10031]]). | ||
* [https://gist.githubusercontent.com/wargio/24af527aaa53a8781438/raw/57d7e090f22ea41b8ceecc8be8d398ec0480efc8/ps_store_json.sh ps_store_json.sh] | |||
<pre>chmod +x | Give execute permission to it: | ||
<pre>chmod +x ps_store_son.sh</pre> | |||
<pre> | <pre> | ||
Line 16: | Line 15: | ||
Usage: ./ps_store_json.sh <internal_entitlements.json> | Usage: ./ps_store_json.sh <internal_entitlements.json> | ||
Login into 'https://store.sonyentertainmentnetwork.com' | Login into 'https://store.sonyentertainmentnetwork.com' | ||
Save the page 'https://store.sonyentertainmentnetwork.com/kamaji/api/chihiro/00_09_000/gateway/store/v1/users/me/internal_entitlements?fields= | Save the page 'https://store.sonyentertainmentnetwork.com/kamaji/api/chihiro/00_09_000/gateway/store/v1/users/me/internal_entitlements?fields=drm_def' | ||
Give the page to this script './ps_store_json.sh internal_entitlements.json | Give the page to this script './ps_store_json.sh internal_entitlements.json | ||
it will return something like: | it will return something like: | ||
Line 28: | Line 27: | ||
Publisher Name: Game Publisher | Publisher Name: Game Publisher | ||
Title Name: Game Name Demo | Title Name: Game Name Demo | ||
Img URL: https://image.api.np.km.playstation.net/images/...... | Img URL: https://image.api.np.km.playstation.net/images/...... | ||
</pre> | </pre> | ||