mirror of
https://github.com/mastodon/documentation
synced 2025-04-11 22:56:17 +02:00

* fix relrefs around trends and related entities * revert moving caption-links to middle of page * hide empty menu in table of contents * clarify edit notifs are only for boosted statuses * following/followers no longer need auth * fix typo * specify cooldown period for account Move * use the correct cooldown * add missing parameters to accounts/id/statuses * link to account_statuses_filter.rb * fix typo (#1072) * fix typo (#1073) * fix link to http sig spec (#1067) * simply HTTP request examples in api methods docs * add missing client_secret to oauth/token (#1062) * Add any, all, none to hashtag timeline * minor formatting changes * Update signature requirements and advice * fix public key -> private key * clarify use of RSA with SHA256 * Add note about saving your profile after adding rel-me link * v2 filters api * comment out params that shouldn't be used in v2 filter api * admin trends * remove old todo * canonical email blocks + scheduled statuses * remove under-construction warnings from finished pages * verify api method params with source code * fix typo (#1088) * fix broken caption-links (#1100) * fix formatting of entities (#1094) * Remove keybase section from user guide (#1093) * fix typos (#1092) * Verify limits are accurate (#1086) * add mention of iframe limitation (#1084) * Add CORS header to WEB_DOMAIN example (#1083) * Fix typo (#1081) * pin http sigs spec at draft 8 * Revert "pin http sigs spec at draft 8" This reverts commit 9fd5f7032b69b29e77599dd62adfe8d2f5cd4f20. * add case sensitivity warning to 4.0 roles * Add url length note to bio (#1087) * remove follow scope from examples (#1103) * clarify usage of update_credentials to update profile fields * add noindex to Account entitity * remove required hint from technically not required property
282 lines
7.1 KiB
Markdown
282 lines
7.1 KiB
Markdown
---
|
||
title: PreviewCard
|
||
description: Represents a rich preview card that is generated using OpenGraph tags from a URL.
|
||
menu:
|
||
docs:
|
||
parent: entities
|
||
aliases: [
|
||
"/entities/card",
|
||
"/entities/Card",
|
||
"/entities/previewcard",
|
||
"/entities/PreviewCard",
|
||
"/api/entities/card",
|
||
"/api/entities/Card",
|
||
"/api/entities/previewcard",
|
||
"/api/entities/PreviewCard",
|
||
]
|
||
---
|
||
|
||
## Examples
|
||
|
||
### Video
|
||
|
||
```json
|
||
{
|
||
"url": "https://www.youtube.com/watch?v=OMv_EPMED8Y",
|
||
"title": "♪ Brand New Friend (Christmas Song!)",
|
||
"description": "",
|
||
"type": "video",
|
||
"author_name": "YOGSCAST Lewis & Simon",
|
||
"author_url": "https://www.youtube.com/user/BlueXephos",
|
||
"provider_name": "YouTube",
|
||
"provider_url": "https://www.youtube.com/",
|
||
"html": "<iframe width=\"480\" height=\"270\" src=\"https://www.youtube.com/embed/OMv_EPMED8Y?feature=oembed\" frameborder=\"0\" allowfullscreen=\"\"></iframe>",
|
||
"width": 480,
|
||
"height": 270,
|
||
"image": "https://files.mastodon.social/preview_cards/images/014/179/145/original/9cf4b7cf5567b569.jpeg",
|
||
"embed_url": "",
|
||
"blurhash": "UvK0HNkV,:s9xBR%njog0fo2W=WBS5ozofV@"
|
||
}
|
||
```
|
||
|
||
### Photo
|
||
|
||
```json
|
||
{
|
||
"url": "https://www.flickr.com/photos/tomfenskephotography/49088768431/",
|
||
"title": "Oregon",
|
||
"description": "",
|
||
"type": "photo",
|
||
"author_name": "Tom Fenske Photography",
|
||
"author_url": "https://www.flickr.com/photos/tomfenskephotography/",
|
||
"provider_name": "Flickr",
|
||
"provider_url": "https://www.flickr.com/",
|
||
"html": "",
|
||
"width": 1024,
|
||
"height": 427,
|
||
"image": "https://files.mastodon.social/preview_cards/images/014/287/139/original/651b1c6976817824.jpeg",
|
||
"embed_url": "https://live.staticflickr.com/65535/49088768431_6a4322b3bb_b.jpg",
|
||
"blurhash": "UnE{@jt6M_oIAhjYs+ayT2WBf9ayRkkDXAj["
|
||
}
|
||
```
|
||
|
||
### Link
|
||
|
||
```json
|
||
{
|
||
"url": "https://www.theguardian.com/money/2019/dec/07/i-lost-my-193000-inheritance-with-one-wrong-digit-on-my-sort-code",
|
||
"title": "‘I lost my £193,000 inheritance – with one wrong digit on my sort code’",
|
||
"description": "When Peter Teich’s money went to another Barclays customer, the bank offered £25 as a token gesture",
|
||
"type": "link",
|
||
"author_name": "",
|
||
"author_url": "",
|
||
"provider_name": "",
|
||
"provider_url": "",
|
||
"html": "",
|
||
"width": 0,
|
||
"height": 0,
|
||
"image": null,
|
||
"embed_url": "",
|
||
"blurhash": null
|
||
}
|
||
```
|
||
|
||
## Attributes
|
||
|
||
### `url` {#url}
|
||
|
||
**Description:** Location of linked resource.\
|
||
**Type:** String (URL)\
|
||
**Version history:**\
|
||
1.0.0 - added
|
||
|
||
### `title` {#title}
|
||
|
||
**Description:** Title of linked resource.\
|
||
**Type:** String\
|
||
**Version history:**\
|
||
1.0.0 - added
|
||
|
||
### `description` {#description}
|
||
|
||
**Description:** Description of preview.\
|
||
**Type:** String\
|
||
**Version history:**\
|
||
1.0.0 - added
|
||
|
||
### `type` {#type}
|
||
|
||
**Description:** The type of the preview card.\
|
||
**Type:** String (Enumerable, oneOf)\
|
||
`link` = Link OEmbed\
|
||
`photo` = Photo OEmbed\
|
||
`video` = Video OEmbed\
|
||
`rich` = iframe OEmbed. Not currently accepted, so won't show up in practice.\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `author_name` {#author_name}
|
||
|
||
**Description:** The author of the original resource.\
|
||
**Type:** String\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `author_url` {#author_url}
|
||
|
||
**Description:** A link to the author of the original resource.\
|
||
**Type:** String (URL)\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `provider_name` {#provider_name}
|
||
|
||
**Description:** The provider of the original resource.\
|
||
**Type:** String\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `provider_url` {#provider_url}
|
||
|
||
**Description:** A link to the provider of the original resource.\
|
||
**Type:** String (URL)\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `html` {#html}
|
||
|
||
**Description:** HTML to be used for generating the preview card.\
|
||
**Type:** String (HTML)\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `width` {#height}
|
||
|
||
**Description:** Width of preview, in pixels.\
|
||
**Type:** Integer\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `height` {#height}
|
||
|
||
**Description:** Height of preview, in pixels.\
|
||
**Type:** Integer\
|
||
**Version history:**\
|
||
1.3.0 - added
|
||
|
||
### `image` {#image}
|
||
|
||
**Description:** Preview thumbnail.\
|
||
**Type:** {{<nullable>}} String (URL)\
|
||
**Version history:**\
|
||
1.0.0 - added
|
||
|
||
### `embed_url` {#embed_url}
|
||
|
||
**Description:** Used for photo embeds, instead of custom `html`.\
|
||
**Type:** String (URL)\
|
||
**Version history:**\
|
||
2.1.0 - added
|
||
|
||
### `blurhash` {#blurhash}
|
||
|
||
**Description:** A hash computed by [the BlurHash algorithm](https://github.com/woltapp/blurhash), for generating colorful preview thumbnails when media has not been downloaded yet.\
|
||
**Type:** {{<nullable>}} String\
|
||
**Version history:**\
|
||
3.2.0 - added
|
||
|
||
## Trends::Link entity attributes {#trends-link}
|
||
|
||
```json
|
||
{
|
||
"url": "https://www.nbcnews.com/specials/plan-your-vote-2022-elections/index.html",
|
||
"title": "Plan Your Vote: 2022 Elections",
|
||
"description": "Everything you need to know about the voting rules where you live, including registration, mail-in voting, changes since 2020, and more.",
|
||
"type": "link",
|
||
"author_name": "NBC News",
|
||
"author_url": "",
|
||
"provider_name": "NBC News",
|
||
"provider_url": "",
|
||
"html": "",
|
||
"width": 400,
|
||
"height": 225,
|
||
"image": "https://files.mastodon.social/cache/preview_cards/images/045/027/478/original/0783d5e91a14fd49.jpeg",
|
||
"embed_url": "",
|
||
"blurhash": "UcQmF#ay~qofj[WBj[j[~qof9Fayofofayay",
|
||
"history": [
|
||
{
|
||
"day": "1661817600",
|
||
"accounts": "7",
|
||
"uses": "7"
|
||
},
|
||
{
|
||
"day": "1661731200",
|
||
"accounts": "23",
|
||
"uses": "23"
|
||
},
|
||
{
|
||
"day": "1661644800",
|
||
"accounts": "0",
|
||
"uses": "0"
|
||
},
|
||
{
|
||
"day": "1661558400",
|
||
"accounts": "0",
|
||
"uses": "0"
|
||
},
|
||
{
|
||
"day": "1661472000",
|
||
"accounts": "0",
|
||
"uses": "0"
|
||
},
|
||
{
|
||
"day": "1661385600",
|
||
"accounts": "0",
|
||
"uses": "0"
|
||
},
|
||
{
|
||
"day": "1661299200",
|
||
"accounts": "0",
|
||
"uses": "0"
|
||
}
|
||
]
|
||
}
|
||
```
|
||
|
||
### `history` {#history}
|
||
|
||
**Description:** Usage statistics for given days (typically the past week).\
|
||
**Type:** Array of Hash\
|
||
**Version history:**\
|
||
3.5.0 - added
|
||
|
||
#### `history[][day]` {#history-day}
|
||
|
||
**Description:** UNIX timestamp on midnight of the given day.\
|
||
**Type:** String (UNIX timestamp)\
|
||
**Version history:**\
|
||
3.5.0 - added
|
||
|
||
#### `history[][accounts]` {#history-accounts}
|
||
|
||
**Description:** The counted accounts using the link within that day.\
|
||
**Type:** String (cast from an integer)\
|
||
**Version history:**\
|
||
3.5.0 - added
|
||
|
||
#### `history[][uses]` {#history-uses}
|
||
|
||
**Description:** The counted statuses using the link within that day.\
|
||
**Type:** String (cast from an integer)\
|
||
**Version history:**\
|
||
3.5.0 - added
|
||
|
||
## See also
|
||
|
||
{{< page-relref ref="entities/Status#card" caption="Status (`card` attribute)" >}}
|
||
|
||
{{< caption-link url="https://github.com/mastodon/mastodon/blob/main/app/serializers/rest/preview_card_serializer.rb" caption="app/serializers/rest/preview_card_serializer.rb" >}}
|
||
|
||
{{< caption-link url="https://github.com/mastodon/mastodon/blob/main/app/serializers/rest/trends/link_serializer.rb" caption="app/serializers/rest/trends/link_serializer.rb" >}}
|
||
|
||
{{< caption-link url="https://github.com/mastodon/mastodon/blob/main/app/models/trends/links.rb" caption="app/models/trends/links.rb" >}} |