而不是當通過Twilio發送短信時,我可以指定「友好名稱」代替電話號碼嗎?
client = TwilioRestClient(account_sid, auth_token)
message = client.messages.create(to="+12316851234", from_="+15555555555",
body="Hello there!")
我想用 「友好名稱」,如 「twilio 1」。
message = client.messages.create(to="+12316851234", from_="twilio 1",
body="Hello there!")
試試看看會發生什麼?我討厭向有經驗的SO公民陳述明顯的情況,但那*是我們通常的標準:顯示給定代碼的輸出。 :-) – Prune
我經歷了文檔。儘管在電話號碼字段中允許使用幾個字母,但我無法找到對字符串別名的特定引用。 – Prune