gumer-psn
gumer-psn copied to clipboard
A Playstation Network API written in Node.js
This just adds the base functionality for getting a friends list. The "fields" options can take in different values and should be settable outside of hardcoding it into the URI....
`app.get('/PSN/feed/:id', function(req, res){ gumerPSN.getFeed(req.params.id, function(error, eventFeed) { if (!error) { res.send(eventFeed) } else { if (eventFeed.error.code == 2105356) { // User not found code res.send({ error: true, message: "PSN ID...
The following query allows us to pull more information, such as relationship, verified, followers etc.
After a while I am getting the following response: `{"error":true,"message":"Something went terribly wrong, submit an issue on GitHub please!","response":{"error":{"code":2105867,"message":"Rate limit exceeded"}}}` I know that this error comes from PSN indicating...
According to this [PSN API written in Java](https://github.com/xseillier/psn-api) a DUID is a unique identifier Sony uses to distinguish between devices based on the manufacturer name and the MAC address of...
This is not a bug, but I didn't know where else to ask this: After successfully logging in and getting the access token, is there a way we can log...