在 Flutter 中,如何将文件上传到 PubNub 频道?

Posted

技术标签:

【中文标题】在 Flutter 中,如何将文件上传到 PubNub 频道?【英文标题】:In Flutter, how to upload a file to a PubNub channel? 【发布时间】:2021-10-07 18:40:03 【问题描述】:

我需要向频道发送文件,但我不知道该怎么做。

首先我选择文件 那我就做,

Uint8List fileContent = await f.readAsBytes();
await pubnub.files.sendFile(channelId, 'smiley.jpg', fileContent );

但我收到一条错误消息 PubNubException:请求失败(HttpException:HTTP 标头不可变)。

知道如何在 PubNub 中发送文件吗?

【问题讨论】:

【参考方案1】:

确保您使用的是the latest Pubnub Dart/Flutter SDK

【讨论】:

以上是关于在 Flutter 中,如何将文件上传到 PubNub 频道?的主要内容,如果未能解决你的问题,请参考以下文章