Question

pubnub to recieving SMS

  • 1 October 2020
  • 2 replies
  • 334 views

I am using this code to get SMS with python 3.7 64

It exceutes but when I try to send an SMS I get nothing,


Any Ideas?

Thanks

from ringcentral import SDK
from multiprocessing import Process
from time import sleep
from ringcentral.subscription import Events

rcsdk = SDK( "yajyakyak", "blahblahxyzpdq", "https://platform.devtest.ringcentral.com")
platform = rcsdk.platform()
platform.login("+13135551211", "101", "blahblah")
def on_message(msg):

print(msg)

def pubnub():
try:
s = rcsdk.create_subscription()
s.add_events(['/account/~/extension/~/message-store/instant?type=SMS'])
s.on(Events.notification, on_message)
res = s.register()
try:
print("Wait for notification...")
except Exception as e:
print (e)
while True:
sleep(0.1)

except KeyboardInterrupt:
print("Pubnub listener stopped...")


p = Process(target=pubnub)
try:
p.start()
except KeyboardInterrupt:
p.terminate()
print("Stopped by User")



2 replies

Userlevel 1

You sent SMS messages to the phone number +13135551211? Is that the main company number? Does the number belong to extension 101? Could you login the RingCentral softphone with 101 extension to see if you receive the SMS message?

As far as I know, It does. I am not using the SoftPhone, but the number seems to work fine for sending SMS. So I am assuming it does.

Reply