direct7 0.0.15 → 0.0.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -1
- data/VERSION +1 -1
- data/direct7.gemspec +1 -1
- data/lib/direct7/whatsapp.rb +17 -0
- data/test/test.rb +83 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a131a32b8167c20aec24fbcefc54fbfa580bbc41624c2a8484d0eb8e76e37f2
|
4
|
+
data.tar.gz: 7604364d79cde836c8cb4adcda12bc9643436dc6bb659a0e079d6b7b1582ea8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b451dc3c76a0939d77d56c1c9427c61ff0aa91f40287a54812762ca56acd1dad55e27949c3bf0a5d27b846c084b80b030f8eae3ee23a7b81cf508263f74a46b
|
7
|
+
data.tar.gz: f899549dc50d8f9a1f81155dd42c226f6d69fd60f5596b5267f4225c5d6808385a496e817addc4097b052f59ce25c0157f2cb88b372c664ace79cd42e87aaa32
|
data/README.md
CHANGED
@@ -8,7 +8,7 @@ The SDK is available on RubyGems and can be installed using two methods:
|
|
8
8
|
Add this line to your application's Gemfile:
|
9
9
|
|
10
10
|
```bash
|
11
|
-
gem 'direct7', '~> 0.0.
|
11
|
+
gem 'direct7', '~> 0.0.17'
|
12
12
|
```
|
13
13
|
|
14
14
|
And then execute:
|
@@ -236,6 +236,17 @@ client = Direct7::Client.new('Your API token')
|
|
236
236
|
client.whatsapp.get_status(request_id="0012c7f5-2ba5-49db-8901-4ee9be6dc8d1")
|
237
237
|
```
|
238
238
|
|
239
|
+
### Read Receipt
|
240
|
+
|
241
|
+
```ruby
|
242
|
+
require 'direct7'
|
243
|
+
|
244
|
+
client = Direct7::Client.new('Your API token')
|
245
|
+
|
246
|
+
# message_id is the id shown in the api reports
|
247
|
+
client.whatsapp.read_receipt(message_id="9612c7f5-2ba5-49db-8901-4ee9be6dc8d1")
|
248
|
+
```
|
249
|
+
|
239
250
|
## FAQ
|
240
251
|
|
241
252
|
### How do I get my API token?
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.17
|
data/direct7.gemspec
CHANGED
@@ -4,7 +4,7 @@ require "direct7/version"
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "direct7"
|
7
|
-
spec.version = "0.0.
|
7
|
+
spec.version = "0.0.17"
|
8
8
|
spec.authors = ["Direct7 Networks"]
|
9
9
|
spec.email = ["support@d7networks.com"]
|
10
10
|
spec.summary = "Ruby SDK for Direct7 Platform REST API"
|
data/lib/direct7/whatsapp.rb
CHANGED
@@ -215,6 +215,14 @@ module Direct7
|
|
215
215
|
'sections' => sections,
|
216
216
|
'button' => list_button_text
|
217
217
|
}
|
218
|
+
elsif interactive_type == 'location_request_message'
|
219
|
+
message['content']['interactive']['action'] = {
|
220
|
+
'name' => "send_location"
|
221
|
+
}
|
222
|
+
elsif interactive_type == 'address_message'
|
223
|
+
message['content']['interactive']['action'] = {
|
224
|
+
'parameters' => parameters,
|
225
|
+
}
|
218
226
|
end
|
219
227
|
end
|
220
228
|
|
@@ -231,5 +239,14 @@ module Direct7
|
|
231
239
|
@log.info('Message status retrieved successfully.')
|
232
240
|
response
|
233
241
|
end
|
242
|
+
|
243
|
+
def read_receipt(message_id)
|
244
|
+
response = @client.get(
|
245
|
+
@client.host,
|
246
|
+
"/whatsapp/v2/read-receipt/#{message_id}"
|
247
|
+
)
|
248
|
+
@log.info('Message marked as read successfully.')
|
249
|
+
response
|
250
|
+
end
|
234
251
|
end
|
235
252
|
end
|
data/test/test.rb
CHANGED
@@ -544,6 +544,89 @@ class TestSERVICES < Test::Unit::TestCase
|
|
544
544
|
puts response
|
545
545
|
end
|
546
546
|
|
547
|
+
# Interactive : location request
|
548
|
+
def test_send_whatsapp_interactive_message
|
549
|
+
response = @client.whatsapp.send_whatsapp_interactive_message(
|
550
|
+
originator='971563XXXXXX',
|
551
|
+
recipient='991999999XXXX',
|
552
|
+
interactive_type= "location_request_message",
|
553
|
+
header_type= nil,
|
554
|
+
header_text= nil,
|
555
|
+
header_link=nil, header_file_name=nil,
|
556
|
+
body_text= "Lets make a trip!",
|
557
|
+
footer_text= nil,
|
558
|
+
parameters= nil, sections=nil,
|
559
|
+
buttons=nil
|
560
|
+
)
|
561
|
+
puts response
|
562
|
+
end
|
563
|
+
|
564
|
+
# Interactive : address message
|
565
|
+
def test_send_whatsapp_interactive_message
|
566
|
+
parameters = {
|
567
|
+
"country": "IN",
|
568
|
+
"values": {
|
569
|
+
"name": "Steni Mariya",
|
570
|
+
"phone_number": "+97156965xxxx",
|
571
|
+
"in_pin_code": 680026,
|
572
|
+
"house_number": "45",
|
573
|
+
"floor_number": "3",
|
574
|
+
"tower_number": 34,
|
575
|
+
"building_name": "Excel",
|
576
|
+
"address": "House name",
|
577
|
+
"landmark_area": "Near Mobile Tower",
|
578
|
+
"city": "Thrissur",
|
579
|
+
"state": "Kerala"
|
580
|
+
},
|
581
|
+
"saved_addresses": [
|
582
|
+
{
|
583
|
+
"id": "address1",
|
584
|
+
"value": {
|
585
|
+
"name": "Lifiya Mariya",
|
586
|
+
"phone_number": "+971569xxxxx",
|
587
|
+
"in_pin_code": 680026,
|
588
|
+
"house_number": "45",
|
589
|
+
"floor_number": "3",
|
590
|
+
"tower_number": 34,
|
591
|
+
"building_name": "Excel",
|
592
|
+
"address": "House name",
|
593
|
+
"landmark_area": "Near Mobile Tower",
|
594
|
+
"city": "Thrissur",
|
595
|
+
"state": "Kerala"
|
596
|
+
}
|
597
|
+
},
|
598
|
+
{
|
599
|
+
"id": "address1",
|
600
|
+
"value": {
|
601
|
+
"name": "Mariya",
|
602
|
+
"phone_number": "+971569658xxx",
|
603
|
+
"in_pin_code": 680026,
|
604
|
+
"house_number": "45",
|
605
|
+
"floor_number": "3",
|
606
|
+
"tower_number": 34,
|
607
|
+
"building_name": "Excel",
|
608
|
+
"address": "House name",
|
609
|
+
"landmark_area": "Near Mobile Tower",
|
610
|
+
"city": "Thrissur",
|
611
|
+
"state": "Kerala"
|
612
|
+
}
|
613
|
+
}
|
614
|
+
]
|
615
|
+
}
|
616
|
+
response = @client.whatsapp.send_whatsapp_interactive_message(
|
617
|
+
originator='971563XXXXXX',
|
618
|
+
recipient='991999999XXXX',
|
619
|
+
interactive_type= "address_message",
|
620
|
+
header_type= "text",
|
621
|
+
header_text= "Payment$ for D7 Whatsapp Service",
|
622
|
+
header_link=nil, header_file_name=nil,
|
623
|
+
body_text= "Direct7 Networks is a messaging service provider that specializes in helping organizations efficiently communicate with their customers.",
|
624
|
+
footer_text= "Thank You",
|
625
|
+
parameters= parameters
|
626
|
+
)
|
627
|
+
puts response
|
628
|
+
end
|
629
|
+
|
547
630
|
# Interactive : list
|
548
631
|
def test_send_whatsapp_interactive_message
|
549
632
|
sections = [
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: direct7
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Direct7 Networks
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|