C# implementation of Twilio Chat using ASP.NET MVC
-
Clone this repository and
cd
into its directory:git clone git@github.com:TwilioDevEd/twiliochat-csharp.git cd twiliochat-csharp
-
Create a new file
TwilioChat.Web/Local.config
and update the content with:<appSettings> <add key="TwilioAccountSid" value="Your Twilio Account SID" /> <add key="TwilioApiKey" value="Your Twilio API Key" /> <add key="TwilioApiSecret" value="Your Twilio API Secret" /> <add key="TwilioIpmServiceSid" value="Your IPM Service SID" /> </appSettings>
As usual your
TwilioAccountSid
can be found at https://www.twilio.com/user/accountYour
TwilioApiKey
andTwilioApiSecret
can be found at https://www.twilio.com/user/account/ip-messaging/dev-tools/api-keysAnd finally, your
TwilioIpmServiceSid
can be found at https://www.twilio.com/user/account/ip-messaging/services -
Build the solution.
-
Run the application.
-
Check it out at http://localhost:1398
That's it!
- No warranty expressed or implied. Software is as is. Diggity.
- MIT License
- Lovingly crafted by Twilio Developer Education.