Setting up pushsafer with:
notify:
  - name: NOTIFIER_NAME
    platform: pushsafer
    private_key: ABCDEFGHJKLMNOPQRSTUVXYZ
On restart getting Error:
17-03-06 22:10:15 ERROR (MainThread) [homeassistant.bootstrap] Invalid config for [notify.pushsafer]: required key not provided @ data['api_key']. Got None. (See ?, line ?). Please check the docs at https://home-assistant.io/components/notify.pushsafer/
Thought maybe use api_key?
notify:
  - name: NOTIFIER_NAME
    platform: pushsafer
    api_key: ABCDEFGHJKLMNOPQRSTUVXYZ
No error on startup, but testing the notification raises error:
Traceback (most recent call last):   File "/usr/lib/python3.4/asyncio/tasks.py", line 242, in _step     result = coro.throw(exc)   File "/srv/homeassi/lib/python3.4/site-packages/homeassistant/core.py", line 1001, in _event_to_service_call     yield from service_handler.func(service_call)   File "/srv/homeassi/lib/python3.4/site-packages/homeassistant/components/notify/__init__.py", line 136, in async_notify_message     yield from notify_service.async_send_message(**kwargs)   File "/usr/lib/python3.4/asyncio/futures.py", line 358, in __iter__     yield self  # This tells Task to wait for completion.   File "/usr/lib/python3.4/asyncio/tasks.py", line 297, in _wakeup     future.result()   File "/usr/lib/python3.4/asyncio/futures.py", line 274, in result     raise self._exception   File "/usr/lib/python3.4/concurrent/futures/thread.py", line 54, in run     result = self.fn(*self.args, **self.kwargs)   File "/srv/homeassi/lib/python3.4/site-packages/homeassistant/components/notify/pushsafer.py", line 68, in send_message     "0", "", "", "")   File "/home/homeassi/.homeassistant/deps/pushsafer.py", line 106, in send_message     return MessageRequest(payload)   File "/home/homeassi/.homeassistant/deps/pushsafer.py", line 61, in __init__     Request.__init__(self, "post", MESSAGE_URL, payload)   File "/home/homeassi/.homeassistant/deps/pushsafer.py", line 48, in __init__     raise InitError pushsafer.InitError: No privatekey provided. Init the pushsafer module by calling the init function
Has anyone this notification working?
Thanks for reading!
