1

我目前正在关注关于调用 HTTP API“ getText ”的etherpad 文档

给定这些参数,API 调用将如何构建?

Pad content can be updated and retrieved through the API

getText(padID, [rev]) returns the text of a pad 

Example returns:

{code: 0, message:"ok", data: {text:"Welcome Text"}}
{code: 1, message:"padID does not exist", data: null}
4

1 回答 1

0

您将需要 2 个参数:

  1. apiKey
  2. 垫ID

apiKey 可以从APIKEY.txtetherpad-lite 根目录中命名的文本文件中检索。

padID 的格式为groupID$padID.

综上所述,您可以使用以下端点和有效负载查询 pad 的内容:

http://pad.domain.com/api/1/getText?apikey=<apiKey>&padID=<padID>

前任:http://pad.domain.com/api/1/getText?apikey=6b2d257663asddfe8c78f33f94d8e7290asdasd1dea820ea0c37cf42602ea5eef3c&padID=g.fcXsYTpiNlJMwX35$samplePad

于 2018-11-27T14:06:14.553 回答