-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement Twilio SMS notify MediaUrl support #24971
Implement Twilio SMS notify MediaUrl support #24971
Conversation
Adds support for setting the `media_url` parameter of the twilio API client with an optional attribute under the notify `data` attribute. Per the twilio docs (https://www.twilio.com/docs/sms/send-messages#include-medi$ this feature is only available in the US and Canada, for GIF, PNG, or JPEG content.
Hi @Chris-Johnston, It seems you haven't yet signed a CLA. Please do so here. Once you do that we will be able to review and accept this pull request. Thanks! |
Hey there @robbiet480, mind taking a look at this pull request as its been labeled with a integration ( This is a automatic comment generated by codeowners-mention to help ensure issues and pull requests are seen by the right people. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use follow style instead object():
twillo_args = {
'message': message,
'from_number': self.from_...
}
if ATTR_MEDIAURL in data:
twillo_args['media_url'] = data[...]
...
self.client.messages.create(to=target, **twillo_args)
after testing locally, seems like the previous way of using object() was not working. this seems to be working
Seems to be working on my machine. Once I got a local test environment set up, the Message w/o image: {
"message": "test",
"target": [ "+1xxxxxxxxxx" ]
}
Message w/ image: {
"message": "test",
"target": [ "+1xxxxxxxxxx" ],
"data" : { "media_url" : "https://blog.codinghorror.com/content/images/uploads/2007/03/6a0120a85dcdae970b0128776ff992970c-pi.png" }
}
|
… into hive_water_heater * 'hive_water_heater' of github.com:Rendili/home-assistant: (21 commits) Sensibo, add HVAC_MODE_OFF (home-assistant#25016) Add support for arcam fmj receivers (home-assistant#24621) Enphase envoy individual inverter production (home-assistant#24445) Implement Twilio SMS notify MediaUrl support (home-assistant#24971) Climate 1.0 (home-assistant#23899) Correct socket use in cert_expiry platform (home-assistant#25011) Added missing yeelight models mapping (home-assistant#24963) Install requirements for integrations in packages before importing them. (home-assistant#25005) Upgrade insteonplm to 0.16.0 and add INSTEON scene triggering (home-assistant#24765) Upgrade hdate==0.8.8 (home-assistant#25008) upgrade switchmate to latest lib (home-assistant#25006) Test dependency updates (home-assistant#25004) Add support for aurora ABB Powerone solar photovoltaic inverter (home-assistant#24809) Sleepiq single sleeper crash (home-assistant#24941) Changes as per code review of home-assistant#24646 (home-assistant#24917) Upgrade mypy to 0.711, drop no longer needed workarounds (home-assistant#24998) Adds Stale Probot for issues (home-assistant#24985) Adds Lock Threads Probot (home-assistant#24984) Switched from tuyapy to tuyaha as 1st one is not maintained (home-assistant#24821) Fix errors if rest source becomes unavailable (home-assistant#24986) ... # Conflicts: # homeassistant/components/hive/__init__.py # homeassistant/components/hive/climate.py
Description:
Adds support for setting the
media_url
parameter of the twilio API client with an optional attribute under the notify servicedata
attribute.Per the twilio docs this feature is only available in the US and Canada, for GIF, PNG, or JPEG content.
Pull request with documentation for home-assistant.io (if applicable): home-assistant/home-assistant.io#9792
Example entry for
configuration.yaml
(if applicable):Checklist:
tox
. Your PR cannot be merged unless tests passIf user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
python3 -m script.hassfest
.requirements_all.txt
by runningpython3 -m script.gen_requirements_all
..coveragerc
.If the code does not interact with devices: