@@ -45,19 +45,19 @@ type UploadResponse struct {
45
45
// resp, err := cli.Upload(context.Background(), yourImageBytes, whatsmeow.MediaImage)
46
46
// // handle error
47
47
//
48
- // imageMsg := &waProto .ImageMessage{
48
+ // imageMsg := &waE2E .ImageMessage{
49
49
// Caption: proto.String("Hello, world!"),
50
50
// Mimetype: proto.String("image/png"), // replace this with the actual mime type
51
51
// // you can also optionally add other fields like ContextInfo and JpegThumbnail here
52
52
//
53
- // Url : &resp.URL,
53
+ // URL : &resp.URL,
54
54
// DirectPath: &resp.DirectPath,
55
55
// MediaKey: resp.MediaKey,
56
- // FileEncSha256 : resp.FileEncSHA256,
57
- // FileSha256 : resp.FileSha256 ,
56
+ // FileEncSHA256 : resp.FileEncSHA256,
57
+ // FileSHA256 : resp.FileSHA256 ,
58
58
// FileLength: &resp.FileLength,
59
59
// }
60
- // _, err = cli.SendMessage(context.Background(), targetJID, &waProto .Message{
60
+ // _, err = cli.SendMessage(context.Background(), targetJID, &waE2E .Message{
61
61
// ImageMessage: imageMsg,
62
62
// })
63
63
// // handle error again
@@ -94,27 +94,27 @@ func (cli *Client) Upload(ctx context.Context, plaintext []byte, appInfo MediaTy
94
94
// UploadNewsletter uploads the given attachment to WhatsApp servers without encrypting it first.
95
95
//
96
96
// 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.
98
98
// * There's a "media handle" that needs to be passed in SendRequestExtra.
99
99
//
100
100
// Example:
101
101
//
102
102
// resp, err := cli.UploadNewsletter(context.Background(), yourImageBytes, whatsmeow.MediaImage)
103
103
// // handle error
104
104
//
105
- // imageMsg := &waProto .ImageMessage{
105
+ // imageMsg := &waE2E .ImageMessage{
106
106
// // Caption, mime type and other such fields work like normal
107
107
// Caption: proto.String("Hello, world!"),
108
108
// Mimetype: proto.String("image/png"),
109
109
//
110
110
// // URL and direct path are also there like normal media
111
- // Url : &resp.URL,
111
+ // URL : &resp.URL,
112
112
// DirectPath: &resp.DirectPath,
113
- // FileSha256 : resp.FileSha256 ,
113
+ // FileSHA256 : resp.FileSHA256 ,
114
114
// FileLength: &resp.FileLength,
115
115
// // Newsletter media isn't encrypted, so the media key and file enc sha fields are not applicable
116
116
// }
117
- // _, err = cli.SendMessage(context.Background(), newsletterJID, &waProto .Message{
117
+ // _, err = cli.SendMessage(context.Background(), newsletterJID, &waE2E .Message{
118
118
// ImageMessage: imageMsg,
119
119
// }, whatsmeow.SendRequestExtra{
120
120
// // Unlike normal media, newsletters also include a "media handle" in the send request.
0 commit comments