vonage-ruby-sdk icon indicating copy to clipboard operation
vonage-ruby-sdk copied to clipboard

Add Instagram Support

Open gus-bn opened this issue 1 year ago • 1 comments

Instagram Support

  • Adds Support for Instagram by adding a new channel: Messaging::Channels::Instagram
  • Tests for Messages contents edge cases for text, image, audio and video

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
)

gus-bn avatar Jun 09 '23 18:06 gus-bn

Feature is not yet GA. Don't merge.

superchilled avatar Jun 13 '23 16:06 superchilled