0

I read the article which talk about Blobstore (https://developers.google.com/appengine/docs/go/blobstore/).

I would to know if I can use Channel API to send a file, and if it's possible, how.

Druxtan
  • 1,311
  • 2
  • 15
  • 21

1 Answers1

1

The Channel API is designed to send text. So instead of sending a file via the Channel API, you would send a pointer to the file for the client to download. The pointer may be a datastore key, a blobstore key, a URL etc - depends on your backend really.

Gwyn Howell
  • 5,365
  • 2
  • 31
  • 48