I've created an app called Blog on my Getstream.io account and also created a feed group called users but I'm not able to see any data on the explorer section of GetStream.io after running this code. What could be the issue?
$client = new \GetStream\Stream\Client('xxxxru2tf', 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.xxxx.HBAOcgggf3-xxxx');
$ericFeed = $client->feed('users', 'joe');
// Add the activity to the feed
$data = [
"actor"=> "ho",
"verb"=> "like",
"object"=> "3",
"tweet"=> "Hello world",
];
$ericFeed->addActivity($data);