Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.45 KB

README.md

File metadata and controls

43 lines (29 loc) · 1.45 KB

Twilio Chat - ASP.NET MVC

C# implementation of Twilio Chat using ASP.NET MVC

Build status

Local Development

  1. Clone this repository and cd into its directory:

    git clone git@github.com:TwilioDevEd/twiliochat-csharp.git
    cd twiliochat-csharp
    
  2. 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/account

    Your TwilioApiKey and TwilioApiSecret can be found at https://www.twilio.com/user/account/ip-messaging/dev-tools/api-keys

    And finally, your TwilioIpmServiceSid can be found at https://www.twilio.com/user/account/ip-messaging/services

  3. Build the solution.

  4. Run the application.

  5. Check it out at http://localhost:1398

That's it!

Meta

  • No warranty expressed or implied. Software is as is. Diggity.
  • MIT License
  • Lovingly crafted by Twilio Developer Education.