Vernissage/README.md

62 lines
1.9 KiB
Markdown
Raw Normal View History

2023-01-06 18:16:08 +01:00
# Vernissage
## Font
Font used in the application is: Fleur De Leah
https://fonts.google.com/specimen/Fleur+De+Leah?preview.text=Vernissage%20for&preview.text_type=custom
2023-01-28 11:48:26 +01:00
## Issues
- **Follow/unfollow hashtags is not available through the API**
Pixelfed uses endpoint (POST): https://pixelfed.social/api/local/discover/tag/subscribe, with body:
```json
{
"name": "streetphotography"
}
```
- **Bookmark/unbookmark statuses from external servers is not working (404 as a respnse)**
Here also Pixelfed uses different endpoing (POST): https://pixelfed.social/i/bookmark, with body:
```json
{
"item":"524216615476909436"
}
```
Even if we save bookmark on the web, we don't have reflected that information in statuses JSON.
- **Reboost is not working**
Seems like reboost is working only from Pixelfed to Mastodon. When I'm following someone from Pixelfed
from my pixelfed account I don't see his reboost on my Pixelfed home timeline.
2023-01-29 08:12:50 +01:00
- **Trends are not availabe through the API**
2023-01-28 11:48:26 +01:00
Pixelfed uses endpoint (GET): https://pixelfed.social/api/pixelfed/v2/discover/posts/trending?range=daily
2023-01-28 11:51:10 +01:00
This endpoint is not working in different servers e.g.: https://pxlmo.com/api/pixelfed/v2/discover/posts/trending?range=daily
2023-01-29 08:12:50 +01:00
2023-01-29 19:11:44 +01:00
Mastodon endpoint `/api/v1/trends/statuses` is not available (404 response).
2023-01-29 08:12:50 +01:00
- **Place is not available in the API**
In the status response there is no information about place.
2023-01-29 19:11:44 +01:00
That information is visible when using Pixelfed web app.
- **Status doesn't contains information about bookmark status**
In the status JSON we don't have information about bookmark status.
- ** Endpoint about instance information returns different JSON structure**
API in Pixelfed (`/api/v1/instance`) returns JSON with diefferent structure then API specify.
2023-02-01 20:01:18 +01:00
- **There are some issues in bookmarks/favourites endpoints**
It seems like paging is not working in that endpoints (I've tried with page and max_id).
Github issue: https://github.com/pixelfed/pixelfed/issues/4182