Notify: Warning Unable to find service notify/telstra_sms

Hi,

I am trying to fire a script from the frontend to send a text via Telstra SMS but I am getting error ‘Unable to find service notify/telstra_sms’

And other errors messages, the account is approved is it syntax for keys do they need to be in quotes?

2017-11-14 23:30:03 ERROR (SyncWorker_15) [homeassistant.components.notify.telstra] Error obtaining authorization from Telstra API
NoneType: None
2017-11-14 23:30:03 ERROR (MainThread) [homeassistant.components.notify] Failed to initialize notification service telstra
2017-11-14 23:30:35 WARNING (MainThread) [homeassistant.components.media_player] Setup of platform cast is taking over 10 seconds.
2017-11-14 23:30:36 WARNING (MainThread) [homeassistant.components.media_player] Setup of platform cast is taking over 10 seconds.
2017-11-14 23:31:57 WARNING (MainThread) [homeassistant.core] Unable to find service notify/telstra_sms
2017-11-15 00:03:40 WARNING (MainThread) [homeassistant.core] Unable to find service notify/telstra_sms

Any ideas? wrong syntax or activate notify component? help

configuration.yaml:

notify:
  name: Telstra_SMS
  platform: telstra
  consumer_key: key
  consumer_secret: key
  phone_number: +61400111111

group.yaml:

send_sms:
  name: Send SMS
  view: no
  icon: mdi:cellphone-wireless
    - script.send_sms

script.yaml:

send_sms:
  sequence:
    - service: notify.Telstra_SMS
      data:
        message: Hi this is a test message

I’m pretty sure your secrets/keys shouldn’t need to be in quotes, unless they contain special characters which are being interrupted as something other than a string. (Without posting your password) Does your key/secret contain: "%<>{}[][]’`* or anything like that?

Hi,

Thanks, the keys do not have special chars. There is an issue with the way Telsra authenticates in another thread. I will close this one later today.

1 Like