Class: DelivereeSms::Nexmo
- Inherits:
-
Object
- Object
- DelivereeSms::Nexmo
- Defined in:
- lib/deliveree_sms/nexmo.rb
Instance Attribute Summary collapse
-
#api_url ⇒ Object
readonly
Returns the value of attribute api_url.
-
#body ⇒ Object
readonly
Returns the value of attribute body.
-
#headers ⇒ Object
readonly
Returns the value of attribute headers.
Instance Method Summary collapse
-
#initialize(content, to_number, from_number, keys) ⇒ Nexmo
constructor
A new instance of Nexmo.
Constructor Details
#initialize(content, to_number, from_number, keys) ⇒ Nexmo
Returns a new instance of Nexmo.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# File 'lib/deliveree_sms/nexmo.rb', line 3 def initialize(content, to_number, from_number, keys) base64key = Base64.strict_encode64("#{keys[:NEXMO_API_KEY]}:#{keys[:NEXMO_API_SECRET]}") @api_url = 'https://rest.nexmo.com/sms/json' @headers = { 'Content-Type' => 'application/json' } @body = { api_key: keys[:NEXMO_API_KEY], api_secret: keys[:NEXMO_API_SECRET], to: to_number, text: content, from: from_number } end |
Instance Attribute Details
#api_url ⇒ Object (readonly)
Returns the value of attribute api_url.
2 3 4 |
# File 'lib/deliveree_sms/nexmo.rb', line 2 def api_url @api_url end |
#body ⇒ Object (readonly)
Returns the value of attribute body.
2 3 4 |
# File 'lib/deliveree_sms/nexmo.rb', line 2 def body @body end |
#headers ⇒ Object (readonly)
Returns the value of attribute headers.
2 3 4 |
# File 'lib/deliveree_sms/nexmo.rb', line 2 def headers @headers end |