Laravel AT Protocol Client (alpha & unstable)
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Rename identifier to did in AtpClient constructor

+2 -2
+2 -2
src/AtpClient.php
··· 38 38 39 39 public function __construct( 40 40 SessionManager $sessions, 41 - string $identifier, 41 + string $did, 42 42 ) { 43 43 // Load the network client 44 - $this->client = new Client($this, $sessions, $identifier); 44 + $this->client = new Client($this, $sessions, $did); 45 45 46 46 // Load all function collections 47 47 $this->bsky = new BskyClient($this);