forked from infobip/oneapi-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example_send_message_and_wait_for_dlr_push.py
60 lines (46 loc) · 1.69 KB
/
example_send_message_and_wait_for_dlr_push.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
import pdb
import sys as sys
import logging as logging
import time as time
import oneapi as oneapi
import oneapi.models as models
import oneapi.dummyserver as dummyserver
logging.basicConfig(level=logging.DEBUG, format='%(asctime)s %(name)-12s %(levelname)-8s %(message)s')
if len(sys.argv) < 4:
print 'Please enter username, password, your ip address and gsm number'
sys.exit(1)
username = sys.argv[1]
password = sys.argv[2]
public_ip_address = sys.argv[3]
address = sys.argv[4]
port = 9000
sms_client = oneapi.SmsClient(username, password)
notify_url = 'http://{0}:{1}'.format(public_ip_address, port)
# example:prepare-message-with-notify-url
sms = models.SMSRequest()
sms.sender_address = address
sms.address = address
sms.message = 'Test message'
# The url where the delivery notification will be pushed:
sms.notify_url = notify_url
# ----------------------------------------------------------------------------------------------------
result = sms_client.send_sms(sms)
if not result.is_success():
print 'Error sending message:', result.exception
sys.exit(1)
print result
print 'Is success = ', result.is_success()
print 'Client correlator = ', result.client_correlator
# Wait for 15 seconds for push-es
server = dummyserver.DummyWebServer(port)
server.start_wait_and_shutdown(15)
requests = server.get_requests()
if not requests:
print 'No requests received'
sys.exit(1)
for method, path, http_body in requests:
# example:on-delivery-notification
delivery_status = oneapi.SmsClient.unserialize_delivery_status(http_body)
# ----------------------------------------------------------------------------------------------------
print delivery_status