1

我正在使用 Glip API 发布消息。我可以从 Glip UI 发布图像,但我没有看到发布图像的选项。有谁知道如何做到这一点?

4

2 回答 2

1

如果有人在寻找工作示例时遇到这个问题,这就是我所做的(使用 Node 和 RingCentral SDK):

var RC = require('ringcentral');
var fs = require('fs');
var FormData = require('form-data');

// {login to Glip and generate the platform object (https://github.com/ringcentral/ringcentral-js)}

var formData = new FormData();
formData.append('attachment', fs.createReadStream('image.png'));

platform
   .send({
       method: 'POST',
       url: '/glip/files',
       body: formData,
       query: {
          groupId: '1234', // whatever group you want to post to
       }
    })
    .then(function(){
       console.log('file uploaded');
    })
    .catch(function(e){
       console.log(e.message);
    });
于 2018-04-12T13:50:27.593 回答
1

Glip 最近推出了可用于附加图像的文件上传 API 。您也可以使用我们的API Explorer进行尝试。

于 2017-09-18T22:32:10.053 回答