Mastodon
  • 什么是 Mastodon?
  • 使用 Mastodon
    • 注册帐户
    • 设置你的个人资料
    • 在你的账户发布内容
    • 使用网络功能
    • 处理不想看到的内容
    • 推广你和他人
    • 进行偏好设置
    • 更多设置
    • 在站点外使用 Mastodon
    • 迁移或离开账户
    • 运行你自己的站点
  • 运营 Mastodon
    • 准备你的服务器
    • 从源代码安装
    • 配置你的环境
    • 安装可选功能
      • 对象存储
      • 洋葱服务
      • 验证码
      • 单点登录
    • 配置全文搜索
    • 设置你的新实例
    • 使用管理 CLI
    • 升级到新版本
    • 备份你的服务器
    • 迁移到新机器
    • 扩大你的站点规模
    • 审核操作
    • 故障排除
      • 数据库索引损坏
    • 用户组
  • 开发 Mastodon 应用
    • API 入门指南
    • 使用公开数据
    • 获取客户端应用访问权限
    • 使用帐户登录
    • 库与实现
  • 向 Mastodon 项目做贡献
    • 技术概览
    • 设置开发环境
    • 代码结构
    • 路由
    • 漏洞赏金与责任披露
  • 遵循的标准
    • ActivityPub
    • WebFinger
    • 安全性
    • Microformats
    • OAuth
    • Bearcaps
  • REST API
    • Datetime 格式
    • 指南与最佳实践
    • OAuth 令牌
    • OAuth 作用域
    • 速率限制
  • API 方法
    • apps
      • oauth
      • emails
    • accounts
      • bookmarks
      • favourites
      • mutes
      • blocks
      • domain_blocks
      • filters
      • reports
      • follow_requests
      • endorsements
      • featured_tags
      • preferences
      • followed_tags
      • suggestions
      • tags
    • profile
    • statuses
      • media
      • polls
      • scheduled_statuses
    • timelines
      • conversations
      • lists
      • markers
      • streaming
    • grouped notifications
    • notifications
      • push
    • search
    • instance
      • trends
      • directory
      • custom_emojis
      • announcements
    • admin
      • accounts
      • canonical_email_blocks
      • dimensions
      • domain_allows
      • domain_blocks
      • email_domain_blocks
      • ip_blocks
      • measures
      • reports
      • retention
      • trends
    • proofs
    • oembed
  • API 实体
    • Account
    • AccountWarning
    • Admin::Account
    • Admin::CanonicalEmailBlock
    • Admin::Cohort
    • Admin::Dimension
    • Admin::DomainAllow
    • Admin::DomainBlock
    • Admin::EmailDomainBlock
    • Admin::Ip
    • Admin::IpBlock
    • Admin::Measure
    • Admin::Report
    • Announcement
    • Appeal
    • Application
    • Context
    • Conversation
    • CustomEmoji
    • DomainBlock
    • Error
    • ExtendedDescription
    • FamiliarFollowers
    • FeaturedTag
    • Filter
    • FilterKeyword
    • FilterResult
    • FilterStatus
    • IdentityProof
    • Instance
    • List
    • Marker
    • MediaAttachment
    • Notification
    • NotificationPolicy
    • NotificationRequest
    • Poll
    • Preferences
    • PreviewCard
    • PreviewCardAuthor
    • PrivacyPolicy
    • Reaction
    • Relationship
    • RelationshipSeveranceEvent
    • Report
    • Role
    • Rule
    • ScheduledStatus
    • Search
    • Status
    • StatusEdit
    • StatusSource
    • Suggestion
    • Tag
    • TermsOfService
    • Token
    • Translation
    • V1::Filter
    • V1::Instance
    • V1::NotificationPolicy
    • WebPushSubscription

domain_allows API 方法

允许特定域名进行联合。

    • 列出所有允许的域名
    • 获取单个允许的域名
    • 允许一个域名进行联合
    • 删除一个允许的域名
    • 另请参考

列出所有允许的域名

GET /api/v1/admin/domain_allows HTTP/1.1

显示关于所有允许的域名的信息。

返回: Admin::DomainAllow 数组
OAuth: 用户令牌 + admin:read:domain_allows
权限: 管理联合
版本历史:
4.0.0 - 添加

请求

标头
Authorization
必需 提供此标头,其中包含Bearer <user_token>,以获得对此API方法的访问授权。
查询参数
max_id
内部参数。 使用 HTTP Link 标头进行分页。
since_id
内部参数。 使用 HTTP Link 标头进行分页。
min_id
内部参数。 使用 HTTP Link 标头进行分页。
limit
整数。要返回的最大结果数。 默认为 100 个允许的域名。 最大 200 个允许的域名。

响应

200: OK
[
	{
		"id": "2",
		"domain": "mastodon",
		"created_at": "2022-09-14T21:24:15.360Z"
	},
	{
		"id": "1",
		"domain": "mastodon.social",
		"created_at": "2022-09-14T21:23:02.755Z"
	}
]

由于 DomainAllow ID 通常不通过任何 API 响应公开,因此你必须解析 HTTP Link 标头以加载较旧或较新的结果。 有关更多信息,请参见通过 API 响应进行分页。

Link: <http://mastodon.example/api/v1/admin/domain_allows?limit=2&max_id=2>; rel="next", <http://mastodon.example/api/v1/admin/domain_allows?limit=2&since_id=1>; rel="prev"
403: Forbidden

授权用户不允许执行此操作,或者 Authorization 标头无效或缺失

{
  "error": "This action is not allowed"
}

获取单个允许的域名

GET /api/v1/admin/domain_allows/:id HTTP/1.1

显示有关单个允许的域名的信息。

返回: Admin::DomainAllow
OAuth: 用户令牌 + admin:read:domain_allows
权限: 管理联合
版本历史:
4.0.0 - 添加

路径参数
:id
必需 字符串。数据库中 DomainAllow 的 ID。
标头
Authorization
必需 提供此标头,其中包含Bearer <user_token>,以获得对此API方法的访问授权。

响应

200: OK
{
	"id": "1",
	"domain": "mastodon.social",
	"created_at": "2022-09-14T21:23:02.755Z"
}
403: Forbidden

授权用户不允许执行此操作,或者 Authorization 标头无效或缺失

{
  "error": "This action is not allowed"
}
404: Not found

具有给定 ID 的 DomainAllow 不存在

{
	"error": "Record not found"
}

允许一个域名进行联合

POST /api/v1/admin/domain_allows HTTP/1.1

将一个域名添加到允许进行联合的域名列表中,当实例处于有限联合模式时使用。

返回: Admin::DomainAllow
OAuth: 用户令牌 + admin:write:domain_allows
权限: 管理联合
版本历史:
4.0.0 - 添加

请求

标头
Authorization
必需 提供此标头,其中包含Bearer <user_token>,以获得对此API方法的访问授权。
表单数据参数
domain
必需 字符串。要允许与其进行联合的域名。

响应

200: OK

域名已被允许进行联合,或者已经被允许进行联合

{
	"id": "1",
	"domain": "mastodon.social",
	"created_at": "2022-09-14T21:23:02.755Z"
}
403: Forbidden

授权用户不允许执行此操作,或者 Authorization 标头无效或缺失

{
  "error": "This action is not allowed"
}
422: Unprocessable entity

未提供域名参数或域名参数无效

{
	"error": "Validation failed: Domain can't be blank"
}

删除一个允许的域名

DELETE /api/v1/admin/domain_allows/:id HTTP/1.1

从允许的域名列表中删除一个域名。

返回: Admin::DomainAllow
OAuth: 用户令牌 + admin:write:domain_allows
权限: 管理联合
版本历史:
4.0.0 - 添加

请求

路径参数
:id
必需 字符串。数据库中 DomainAllow 的 ID。
标头
Authorization
必需 提供此标头,其中包含Bearer <user_token>,以获得对此API方法的访问授权。

响应

200: OK

允许的域名已从允许列表中删除

{
	"id": "4",
	"domain": "*",
	"created_at": "2022-09-14T21:32:44.945Z"
}
403: Forbidden

授权用户不允许执行此操作,或者 Authorization 标头无效或缺失

{
  "error": "This action is not allowed"
}
404: Not found

具有给定 ID 的 DomainAllow 不存在

{
	"error": "Record not found"
}

另请参考

app/controllers/api/v1/admin/domain_allows_controller.rb

翻译状态: 本文是英文页面 domain_allows API methods 的翻译,最后翻译时间:2025-04-21,点击这里可以查看翻译后页面的改动。

最后更新于 April 21, 2025 · 改进此页面
也可在此找到: English

赞助商

Dotcom-Monitor LoadView Stephen Tures Swayable SponsorMotion

加入Mastodon · 博客 ·

查看源代码 · CC BY-SA 4.0 · 版权信息