Skip to content

Instantly share code, notes, and snippets.

@dalion619
Created April 27, 2016 23:38
Show Gist options
  • Save dalion619/1cf2500dbc3766a256e9fc8b7e093c09 to your computer and use it in GitHub Desktop.
Save dalion619/1cf2500dbc3766a256e9fc8b7e093c09 to your computer and use it in GitHub Desktop.
public class SmsService : IIdentityMessageService
{
public async Task SendAsync(IdentityMessage message)
{
using (var httpClient = new HttpClient())
{
var result = await httpClient.GetStringAsync($"http://whatsapp2fa.azurewebsites.net/api/SendCode?code={message.Body}&number={message.Destination}&token={token}");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment