Hi all, I have:
from twilio.rest import TwilioRestClient ..... client = TwilioRestClient(ACCOUNT_SID, AUTH_TOKEN) client.messages.create( to="+XXXXXXXX", from_="+XXXXXX", body="my message" )
but when I save and run, I'm just getting an attribute error (client doesn't have messages). It works fine locally. Anyone know why? I just upgraded my account from beginner to the $5 per month account.
cheers matt