social-app を更新
parent
8d13785b5d
commit
40e5288f3e
@ -2,4 +2,25 @@
|
|||||||
|
|
||||||
```sh
|
```sh
|
||||||
./lib/constants.ts:export const PUBLIC_BSKY_SERVICE = 'https://bsky.syu.is'
|
./lib/constants.ts:export const PUBLIC_BSKY_SERVICE = 'https://bsky.syu.is'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## timelineのavatarが表示されない
|
||||||
|
|
||||||
|
- https://github.com/bluesky-social/atproto/tree/main/services/bsky
|
||||||
|
- https://github.com/bluesky-social/atproto/discussions/1990#discussioncomment-10983003
|
||||||
|
|
||||||
|
基本的にavatarは以下のようなurlを使用し、timelineは`avatar_thumbnail`を使用します。
|
||||||
|
|
||||||
|
```sh
|
||||||
|
1. https://appview.${host}/img/avatar/plain/${did}/${cid}@jpeg
|
||||||
|
2. https://${host}/xrpc/com.atproto.sync.getBlob?did=${did}&cid=${cid}
|
||||||
|
```
|
||||||
|
|
||||||
|
例えば、`BSKY_IMG_URI_ENDPOINT=https://cdn.bsky.app/img`を使用すると以下のようになります。
|
||||||
|
|
||||||
|
```sh
|
||||||
|
https://cdn.bsky.app/img/avatar_thumbnail/plain/${did}/${rkey}@jpeg
|
||||||
|
```
|
||||||
|
|
||||||
|
ですが、self-hostでは`BSKY_BLOB_CACHE_LOC=/data`を使用しますので、画像変換が行われず、表示されません。
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user