You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$feed = $this->client->app()->bsky()->feed()->getTimeline()->forge()
->limit(10)
->send()
->feed();
$myFeed = [];
foreach($feed as $entry) {
if ($entry->post()->has('embed')) {
**$embed = $entry->post()->embed();**
Expected behavior
I'd like to be able to display images that are part of the post.
PHP Version
PHP 8.2
Package Version
1.7.0-beta
Relevant log output
Atproto\Exceptions\BadMethodCallException:
Unsupported embed type: app.bsky.embed.images#view
in Atproto\Factories\EmbedFactory::make()
line 32 of .. /vendor/shahmal1yev/blueskysdk/src/Factories/EmbedFactory.php
Additional context
Maybe this is fixed in 1.8.0-beta, however I cannot install that due to a dependency conflict.
shahmal1yev/blueskysdk v1.8.0-beta requires illuminate/collections ~v8.83
but the package is fixed to v11.43.2
$ composer why illuminate/collections
laravel/prompts v0.1.25 requires illuminate/collections (^10.0|^11.0)
If you could update your dependency to illuminate/collections:^11.43.2 that would be good
The text was updated successfully, but these errors were encountered:
Describe the bug
Cannot access images in timeline posts.
Steps to reproduce
Expected behavior
I'd like to be able to display images that are part of the post.
PHP Version
PHP 8.2
Package Version
1.7.0-beta
Relevant log output
Additional context
Maybe this is fixed in 1.8.0-beta, however I cannot install that due to a dependency conflict.
If you could update your dependency to illuminate/collections:^11.43.2 that would be good
The text was updated successfully, but these errors were encountered: