我目前正在遵循etherpad documentation来调用HTTP API“ getText”

给定这些参数,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}

最佳答案

您将需要2个参数:


apiKey
padID


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

padID的格式为groupID$padID

将它们放在一起,您可以使用以下端点和有效负载查询便笺簿的内容:

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

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

关于javascript - 如何用Javascript格式化HTTP API调用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42731984/

10-09 19:48