Last active
April 15, 2024 09:48
-
-
Save whatsmate/fe850ff09061952eaef0cb2d74f9c297 to your computer and use it in GitHub Desktop.
How to send a PDF file to a WhatsApp user in C# using Visual Studio 2022
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Net; | |
| using System.Text.Json; | |
| using System.IO; | |
| using System.Text; | |
| class WaPdfSender | |
| { | |
| // TODO: Replace the following with your gateway instance ID, client ID and secret! | |
| private static string INSTANCE_ID = "YOUR_INSTANCE_ID"; | |
| private static string CLIENT_ID = "YOUR_CLIENT_ID_HERE"; | |
| private static string CLIENT_SECRET = "YOUR_CLIENT_SECRET_HERE"; | |
| private static string DOCUMENT_SINGLE_API_URL = "https://api.whatsmate.net/v3/whatsapp/single/document/message/" + INSTANCE_ID; | |
| static void Main(string[] args) | |
| { | |
| WaPdfSender pdfSender = new WaPdfSender(); | |
| // TODO: Put down your recipient's number (e.g. your own cell phone number) | |
| string recipient = "12025550105"; | |
| // TODO: Remember to copy the PDF from ..\assets to the TEMP directory! | |
| string base64Content = convertFileToBase64("C:\\TEMP\\subwaymap.pdf"); | |
| string fn = "anyname.pdf"; | |
| string caption = "You should find the map handy."; // optional; can be empty | |
| pdfSender.sendDocument(recipient, base64Content, fn, caption); | |
| Console.WriteLine("Press Enter to exit."); | |
| Console.ReadLine(); | |
| } | |
| // http://stackoverflow.com/questions/25919387/c-sharp-converting-file-into-base64string-and-back-again | |
| static public string convertFileToBase64(string fullPathToDoc) | |
| { | |
| Byte[] bytes = File.ReadAllBytes(fullPathToDoc); | |
| String base64Encoded = Convert.ToBase64String(bytes); | |
| return base64Encoded; | |
| } | |
| public bool sendDocument(string number, string base64Content, string fn, string caption) | |
| { | |
| bool success = true; | |
| try | |
| { | |
| HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(DOCUMENT_SINGLE_API_URL); | |
| httpRequest.Method = "POST"; | |
| httpRequest.Accept = "application/json"; | |
| httpRequest.ContentType = "application/json"; | |
| httpRequest.Headers["X-WM-CLIENT-ID"] = CLIENT_ID; | |
| httpRequest.Headers["X-WM-CLIENT-SECRET"] = CLIENT_SECRET; | |
| SingleDocPayload payloadObj = new SingleDocPayload() { number = number, caption = caption, document = base64Content, filename = fn}; | |
| string postData = JsonSerializer.Serialize(payloadObj); | |
| using (var streamWriter = new StreamWriter(httpRequest.GetRequestStream())) | |
| { | |
| streamWriter.Write(postData); | |
| } | |
| var httpResponse = (HttpWebResponse)httpRequest.GetResponse(); | |
| using (var streamReader = new StreamReader(httpResponse.GetResponseStream())) | |
| { | |
| var result = streamReader.ReadToEnd(); | |
| Console.WriteLine(result); | |
| } | |
| } | |
| catch (WebException webExcp) | |
| { | |
| Console.WriteLine("A WebException has been caught."); | |
| Console.WriteLine(webExcp.ToString()); | |
| WebExceptionStatus status = webExcp.Status; | |
| if (status == WebExceptionStatus.ProtocolError) | |
| { | |
| Console.Write("The REST API server returned a protocol error: "); | |
| HttpWebResponse? httpResponse = webExcp.Response as HttpWebResponse; | |
| Stream stream = httpResponse.GetResponseStream(); | |
| StreamReader reader = new StreamReader(stream); | |
| String body = reader.ReadToEnd(); | |
| Console.WriteLine((int)httpResponse.StatusCode + " - " + body); | |
| success = false; | |
| } | |
| } | |
| catch (Exception e) | |
| { | |
| Console.WriteLine("A general exception has been caught."); | |
| Console.WriteLine(e.ToString()); | |
| success = false; | |
| } | |
| return success; | |
| } | |
| public class SingleDocPayload | |
| { | |
| public string number { get; set; } | |
| public string caption { get; set; } | |
| public string document { get; set; } | |
| public string filename { get; set; } | |
| } | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Write-up: https://whatsmate.github.io/2022-07-18-send-whatsapp-pdf-c-sharp-dot-net-vs2022/