使用js编辑一个PasteBin然后读取它

Edit a PasteBin using js and then read it

我有一个变量要存储在 pastebin 中,所以我找到了 this,但是 link 到 API 不工作。

我想知道是否可以将变量存储在 pastebin 文件中,这样当您在另一台计算机上访问该站点时,它会从 pastebin 获取值并将其设为变量

例如

var posts = <Link to pastebin>

用户创建了一个 post 所以它编辑了 pastebin

因此,当其他用户访问网站时,他们可以看到其他用户的内容 post。

目前没有API直接编辑粘贴。

您可以使用 api 创建或删除它们(存在 JS 包装器 here and here, API docs are provided here). There are lots of other examples on how to use the api listed here

如果您不使用上面列出的节点模块,您可以在 here 查看该代码 - 他们不使用 api 进行编辑,他们使用 post 手动填写表格。