bluesky-social / atproto

Social networking technology created by Bluesky
Other
6.17k stars 432 forks source link

Social proof #2548

Closed dirkmc closed 3 months ago

dirkmc commented 3 months ago

When you view a user’s profile we’d like to provide some details about followers of the given account that you follow. This establishes social connections between the two users, and we hope that it will facilitate users discovering their broader clusters and ultimately following each other. Here’s an example: image

This PR adds a socialProof to the viewer section of the profile, eg:

{
    ...
    socialProof: {
      count: 1,
      follows: [
        {
          did: 'did:plc:x3bne6hoa7xokmoccsqzgxvm',
          handle: 'bob.test',
          displayName: 'bobby',
          avatar: 'https://bsky.public.url/img/avatar/plain/did:plc:x3bne6hoa7xokmoccsqzgxvm/bafkreiaivizp4xldojmmpuzmiu75cmea7nq56dnntnuhzhsjcb63aou5ei@jpeg',
          viewer: [Object],
          labels: []
        }
      ]
    }
}

The PR implements

estrattonbailey commented 3 months ago

Thanks @dirkmc! Gonna merge into the base and take it from here 👍