Skip to content

Commit bcbc6be

Browse files
committed
Update Upload docs. Fixes #619
1 parent bfaf9bb commit bcbc6be

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

upload.go

+10-10
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@ type UploadResponse struct {
4545
// resp, err := cli.Upload(context.Background(), yourImageBytes, whatsmeow.MediaImage)
4646
// // handle error
4747
//
48-
// imageMsg := &waProto.ImageMessage{
48+
// imageMsg := &waE2E.ImageMessage{
4949
// Caption: proto.String("Hello, world!"),
5050
// Mimetype: proto.String("image/png"), // replace this with the actual mime type
5151
// // you can also optionally add other fields like ContextInfo and JpegThumbnail here
5252
//
53-
// Url: &resp.URL,
53+
// URL: &resp.URL,
5454
// DirectPath: &resp.DirectPath,
5555
// MediaKey: resp.MediaKey,
56-
// FileEncSha256: resp.FileEncSHA256,
57-
// FileSha256: resp.FileSha256,
56+
// FileEncSHA256: resp.FileEncSHA256,
57+
// FileSHA256: resp.FileSHA256,
5858
// FileLength: &resp.FileLength,
5959
// }
60-
// _, err = cli.SendMessage(context.Background(), targetJID, &waProto.Message{
60+
// _, err = cli.SendMessage(context.Background(), targetJID, &waE2E.Message{
6161
// ImageMessage: imageMsg,
6262
// })
6363
// // handle error again
@@ -94,27 +94,27 @@ func (cli *Client) Upload(ctx context.Context, plaintext []byte, appInfo MediaTy
9494
// UploadNewsletter uploads the given attachment to WhatsApp servers without encrypting it first.
9595
//
9696
// Newsletter media works mostly the same way as normal media, with a few differences:
97-
// * Since it's unencrypted, there's no MediaKey or FileEncSha256 fields.
97+
// * Since it's unencrypted, there's no MediaKey or FileEncSHA256 fields.
9898
// * There's a "media handle" that needs to be passed in SendRequestExtra.
9999
//
100100
// Example:
101101
//
102102
// resp, err := cli.UploadNewsletter(context.Background(), yourImageBytes, whatsmeow.MediaImage)
103103
// // handle error
104104
//
105-
// imageMsg := &waProto.ImageMessage{
105+
// imageMsg := &waE2E.ImageMessage{
106106
// // Caption, mime type and other such fields work like normal
107107
// Caption: proto.String("Hello, world!"),
108108
// Mimetype: proto.String("image/png"),
109109
//
110110
// // URL and direct path are also there like normal media
111-
// Url: &resp.URL,
111+
// URL: &resp.URL,
112112
// DirectPath: &resp.DirectPath,
113-
// FileSha256: resp.FileSha256,
113+
// FileSHA256: resp.FileSHA256,
114114
// FileLength: &resp.FileLength,
115115
// // Newsletter media isn't encrypted, so the media key and file enc sha fields are not applicable
116116
// }
117-
// _, err = cli.SendMessage(context.Background(), newsletterJID, &waProto.Message{
117+
// _, err = cli.SendMessage(context.Background(), newsletterJID, &waE2E.Message{
118118
// ImageMessage: imageMsg,
119119
// }, whatsmeow.SendRequestExtra{
120120
// // Unlike normal media, newsletters also include a "media handle" in the send request.

0 commit comments

Comments
 (0)