Vonage / vonage-ruby-sdk

Vonage REST API client for Ruby. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
https://developer.vonage.com
Apache License 2.0
216 stars 108 forks source link

Add Instagram Support #272

Open gus-bn opened 1 year ago

gus-bn commented 1 year ago

Instagram Support

Usage

vonage_client = Vonage::Client.new(...) # auth credentials
message = Vonage::Messaging::Message.instagram(
  type: 'text',
  message: 'This is an Instagram text message sent using the Messages API'
)
vonage_client.messaging.send(
  from: 'YOUR-INSTAGRAM-ID',
  to: 'USER-INSTAGRAM-ID',
  **message
)
superchilled commented 1 year ago

Feature is not yet GA. Don't merge.