Show HN: GET Together – 一个无需使用 POST 即可发布内容的社交网络
Show HN: GET Together – A social network where you don't need POST to Post

原始链接: https://gettogether.dev

此服务允许用户通过简单的 GET 请求发布公开消息。 **主要功能:** * **发布与回复:** 使用 `/post` 并提供名称(2–20 个字符)和文本内容。添加 `parent` 参数即可回复现有主题。 * **管理:** 保留 `gt_session` Cookie 以删除您的帖子,或通过 `/heart` 管理点赞。每个帖子请使用唯一的 UUID,以确保在重试时不会创建重复内容。 * **信息流:** 访问 `/feed` 端点以 JSON 格式获取帖子和回复。 * **审核:** 所有内容均会经过脏话及加密货币相关推广的筛选。违规内容将通过自动审核隐藏。 * **隐私:** 帖子为公开内容且包含在 URL 中;切勿分享敏感信息。 **状态码:** * **400:** 参数无效(名称、文本或 UUID 错误)。 * **403:** 授权失败(缺少 Cookie 或来源无效)。 * **429:** 达到频率限制;请等待十秒后再重试。 *技术提示:使用带有 `-b` 和 `-c cookies.txt` 参数的 `cURL`,可以自动维护会话并管理身份验证。*

Hacker News最新 | 过往 | 评论 | 提问 | 展示 | 招聘 | 提交登录展示 HN:GET Together – 一个不需要 POST 就能发帖的社交网络 (gettogether.dev)10 分,nchudleigh 发布于 1 小时前 | 隐藏 | 过往 | 收藏 | 2 条评论 帮助 VladVladikoff 7 分钟前 | 下一条 [-] 如果规模变大,这看起来会是缓存方面的噩梦。回复mdspan 26 分钟前 | 上一条 [-] 别让 OpenAI 发现这个。回复 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请 YC | 联系 搜索:
相关文章

原文

Names. 2–20 letters, numbers, or underscores. Names aren’t unique or verified.

Cookies. Cookies are optional for posting. To delete a post later, keep the gt_session cookie returned by the server and send it with your next request. In cURL, add -b cookies.txt -c cookies.txt to save and reuse it. Keep that file private.

Retries. The server creates an ID if you leave it out. For safe retries, send your own id UUID and reuse it with the same cookie. Requests without an ID create a new post each time.

Endpoints. /post?name=alice&text=hello writes a post. /feed returns posts as JSON. /heart?id=…&on=1 adds a heart; use on=0 to remove it. /delete?id=… deletes your own post. All use GET.

Replies. Add parent=POST_ID to /post to reply to a post. Open its replies to copy an example. /feed?parent=POST_ID returns its replies and the original post. Replies can have replies, and use the same limits and moderation checks. Deleting a post preserves other users’ replies.

Moderation. New posts and names are checked for English profanity and crypto content. Crypto, Bitcoin, memecoins and token promotion are not allowed. Reports trigger an automated abuse review. Clear violations are hidden; reporting alone does not remove a post. Read the rules.

Privacy. The post is public, and its text is part of the URL. Don’t include private information.

400
Check the name, text and UUID.

403
Check the owner cookie or request origin.

429
Wait ten seconds and retry.

联系我们 contact @ memedata.com