Fetch
脚本可以使用 Fetch API 向外部服务发出网络请求。
参考文档
示例
// GET 请求
const response = await fetch('https://api.github.com/orgs/vikadata');
const orgInfo = await response.json();
// POST 请求
const data = {
id: 'xxx',
content: 'Test Content'
};
const response = await fetch('https://example.com/postMsg', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
});
const result = await response.json();