Add media API and split API docs in two menu items
This commit is contained in:
parent
f028cfde91
commit
8258abd6ea
|
@ -31,7 +31,12 @@ enableGitInfo = true
|
|||
identifier = "development"
|
||||
url = "/development/"
|
||||
[[menu.docs]]
|
||||
name = "API"
|
||||
name = "API Overview"
|
||||
weight = 4
|
||||
identifier = "api"
|
||||
url = "/api/"
|
||||
[[menu.docs]]
|
||||
name = "REST API"
|
||||
weight = 5
|
||||
identifier = "rest-api"
|
||||
url = "/api/rest/"
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Apps API
|
||||
title: Apps
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Blocks API
|
||||
title: Blocks
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Custom emoji API
|
||||
title: Custom emoji
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Endorsements API
|
||||
title: Endorsements
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Favourites API
|
||||
title: Favourites
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Follow suggestions API
|
||||
title: Follow suggestions
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Instances API
|
||||
title: Instances
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,7 +1,46 @@
|
|||
---
|
||||
title: Media attachments API
|
||||
title: Media attachments
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
## POST /api/v1/media
|
||||
|
||||
Upload a media attachment that can be used with a new status.
|
||||
|
||||
Returns [Attachment]({{< relref "entities.md#attachment" >}})
|
||||
|
||||
### Resource information
|
||||
|
||||
{{< api_method_info auth="Yes" user="Yes" scope="write write:media" version="0.0.0" >}}
|
||||
|
||||
### Parameters
|
||||
|
||||
|Name|Description|Required|Default|
|
||||
|----|-----------|:------:|:-----:|
|
||||
| `file` | Media to be uploaded (encoded using `multipart/form-data`) | Required ||
|
||||
| `description` | A plain-text description of the media for accessibility (max 420 chars) | Optional ||
|
||||
| `focus` | Two floating points, comma-delimited. See [focal points](#focal-points) | Optional ||
|
||||
|
||||
## PUT /api/v1/media/:id
|
||||
|
||||
Update a media attachment. Can only be done before the media is attached to a status.
|
||||
|
||||
Returns [Attachment]({{< relref "entities.md#attachment" >}})
|
||||
|
||||
### Resource information
|
||||
|
||||
{{< api_method_info auth="Yes" user="Yes" scope="write write:media" version="0.0.0" >}}
|
||||
|
||||
### Parameters
|
||||
|
||||
|Name|Description|Required|Default|
|
||||
|----|-----------|:------:|:-----:|
|
||||
| `description` | A plain-text description of the media for accessibility (max 420 chars) | Optional ||
|
||||
| `focus` | Two floating points, comma-delimited. See [focal points](#focal-points) | Optional ||
|
||||
|
||||
## Focal points
|
||||
|
||||
Server-side preview images are never cropped, to support a variety of apps and user interfaces. Therefore, the cropping must be done by those apps. To crop intelligently, focal points can be used to ensure a certain section of the image is always within the cropped viewport. [See this for how to let users select focal point coordinates](https://github.com/jonom/jquery-focuspoint#1-calculate-your-images-focus-point).
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Mutes API
|
||||
title: Mutes
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Reports API
|
||||
title: Reports
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Search API
|
||||
title: Search
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
title: Timelines API
|
||||
title: Timelines
|
||||
menu:
|
||||
docs:
|
||||
parent: api
|
||||
parent: rest-api
|
||||
weight: 10
|
||||
---
|
||||
|
||||
|
|
Loading…
Reference in New Issue