RESTful
开发文档
相关云函数的编写方式,请参考云函数开发文档
在REST API中可以调用云函数。例如,想调用云函数的方法hello:
请求
method :POST
header:
X-Bmob-Application-Id: Your Application ID
X-Bmob-REST-API-Key: Your REST API Key
Content-Type: application/json
- body:
{
key1 : value1,
key2 : value2,
...
}
成功时响应
status: 200 OK
body: 对应云函数返回的格式。
例子
如调用名为hello的云函数可使用以下请求。
curl -X POST \
-H "X-Bmob-Application-Id: Your Application ID" \
-H "X-Bmob-REST-API-Key: Your REST API Key" \
-H "Content-Type: application/json" \
-d '{"name":1337.23,"playerName":"Sean Plott","cheatMode":false}' \
https://api.bmob.cn/1/functions/hello
如果运行的云函数不需要传入参数,请参考下面的例子。 注意,"{}"是不能缺的
curl -X POST \
-H "X-Bmob-Application-Id: Your Application ID" \
-H "X-Bmob-REST-API-Key: Your REST API Key" \
-H "Content-Type: application/json" \
-d '{}' \
https://api.bmob.cn/1/functions/test
Copyright © 2017 Bmob, Maintained by the Bmob Support.
搜索
请输入您要搜索的内容
Keyboard Shortcuts
Keys | Action |
---|---|
? | Open this help |
← | Previous page |
→ | Next page |
s | Search |
[返回
旧版](https://docs.bmob.cn/data/Android/a_faststart/doc/index.html)