Code Monkey home page Code Monkey logo

Comments (4)

bozzit avatar bozzit commented on May 27, 2024 1

Hi,

did a quick search on google but since Sony didn't publish any documentation on their API not sure what the Valid Filters are.

Modify the function.

If Filter == 'offline'

remove userFilter= from the URL

that will return all the users on your friends list.

then you can programmatically figure out who is online or not by looking at [primaryOnlineStatus] => offline

Hope this helps

from psn-php.

bohehe avatar bohehe commented on May 27, 2024

Thanks for your reply, removing userFilter from the URL helps me~

from psn-php.

Tustin avatar Tustin commented on May 27, 2024

Good tip. I wasn't entirely sure because I believe the PSN app just shows either online friends or all of your friends. This isn't a public API by any means so unfortunately most of this stuff is just guess and check to see what works or what doesn't work.

from psn-php.

bozzit avatar bozzit commented on May 27, 2024

Yes I realize that this was trail and error and probably using a packet sniffer to figure out the http requests sent out. Good work. Been looking for a php API for a bit and will put it through its paces on the website I'm building.

That Said

could change the function as follows...

public function MyFriends($Filter = "online", $Limit = 36)
    {
        $headers = array(
            'Authorization: Bearer ' . $this->oauth
        );

        switch ($Filter)
        {
           case 'all':
              $sFilter = '';
           break;

           case 'online':
              $sFilter = 'userFilter=online&';
           break;
        }

        $response = \Utilities::SendRequest(USERS_URL . "me/friends/profiles2?fields=onlineId,avatarUrls,following,friendRelation,isOfficiallyVerified,personalDetail(@default,profilePictureUrls),personalDetailSharing,plus,presences(@titleInfo,hasBroadcastData,lastOnlineDate),primaryOnlineStatus,trophySummary(@default)&sort=name-onlineId&" . $sFilter ."avatarSizes=m&profilePictureSizes=m&offset=0&limit=" . $Limit, $headers, false, null, "GET", null);

        $data = json_decode($response['body'], false);

        return $data;
    }

Bozz

from psn-php.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.