Psn Api Save Abandoned

PlayStation Network API in python

Project README

PSN API

This is a python wrapper for the PSN API.

Read the wiki and previous issues before opening a new one! Maybe your issue is already answered.

Do you like this project? Support it by donating

  • Paypal Paypal: Donate
  • btc Bitcoin: 1DCEpC9wYXeUGXS58qSsqKzyy7HLTTXNYe

How to get refresh token

Sony is using reCaptcha now. There is no way to do this authentication via the Script at this time. So we have worked around the authentication issue by doing the following.

  1. From the PSN Website or App or Console Enable 2 Step Verification
  2. Go to https://www.bungie.net/en/User/SignIn/Psnid?code=000000 Enter your credentials, Solve the reCaptcha, and when you get the ENTER Verification Code screen take a look at the URL in your browser. Collect the following ID: ticket_uuid=b7aeb485-xxxx-4ec2-zzzz-0f23bcee5bc5&layout_type=...... DO NOT ENTER THE VERIFICATION CODE
  3. From the API
auth = Auth('YOUR EMAIL', 'YOUR PASSWORD', b7aeb485-xxxx-4ec2-zzzz-0f23bcee5bc5, 'verification_code_you_got_on_your_phone)

tokens = auth.get_tokens()

print(tokens)
  1. Save the refresh and npsso values from the output

  2. From now on you can authenticate (Refresh your tokens) instead of re-authenticating every time.

Like this:

new_token_pair = Auth.GrabNewTokens(refresh_token)

tokens = {
    "oauth": new_token_pair[0],
    "refresh": new_token_pair[1],
    "npsso": npsso # saved above!
}

friend = Friend(tokens)
friend_list = friend.my_friends()

Note: Check obtain_tokens.py

Features

  • Login to PSN
  • Get user information
  • View and manage your friends list
  • Manage and send messages through PSN (This feature does not work at the moment).

TODO

  • View trophies and trophies for a specific game
  • Create, manage and view communities

This code is in no way affiliated with, authorized, maintained, sponsored or endorsed by PlayStation or any of its affiliates or subsidiaries. This is an independent and unofficial API. Use at your own risk.

Open Source Agenda is not affiliated with "Psn Api" Project. README Source: mgp25/psn-api
Stars
118
Open Issues
8
Last Commit
4 years ago

Open Source Agenda Badge

Open Source Agenda Rating