Stuck in twilio


After this I am stuck and unable to follow the steps shown in the training as I am unable to find the options shown in the screenshots of the training. Please help!!!
Please mention the steps as per the screenshot shown above…

  1. From here , select get a trial number -> It will automatically assign a US based number as well as enter the to Number ( your mobile number wih +91 prefix verify it when Twilio ask for verification)

  2. Then follow the course instructions

  3. Create conf.py with the following details replacing the values on the right hand side of =.

SID = ‘You can find SID in your Twilio Dashboard’
AUTH_TOKEN = ‘You can find on your Twilio Dashboard’
FROM_NUMBER = ‘This is the no. generated by Twilio. You can find this on your Twilio Dashboard’
TO_NUMBER = ‘This is your number. Make sure you are adding +91 in beginning’
API_KEY = ‘This is your Bolt Cloud accout API key’
DEVICE_ID = ‘This is the ID of your Bolt device’

  1. SID and AUTH token already there in the screen shot provided itself
  2. FROM_NUMBER will be the US number that Twilio will be providing you.
  3. The API_KEY and DEVICE_ID could be found by logging into the bolt cloud
  4. Fill in those information save conf.py.
  5. Now goto https://trainings.boltiot.com/courses/429176/lectures/6656729 make the temp_sms.py from the source provided there.
  6. Save the file . Run sudo python3 temp_sms.py from the terminal and you will be getting an SMS in your registered mobile number.

Hope this helps.

2 Likes

select get a trial number It will automatically assign a US based number as well as enter the to Number ( your mobile number wih +91 prefix verify it when Twilio ask for verification) then create conf.py with the following details replacing the values on the right hand side of =.

SID = ‘You can find SID in your Twilio Dashboard’
AUTH_TOKEN = ‘You can find on your Twilio Dashboard’
FROM_NUMBER = ‘This is the no. generated by Twilio. You can find this on your Twilio Dashboard’
TO_NUMBER = ‘This is your number. Make sure you are adding +91 in beginning’
API_KEY = ‘This is your Bolt Cloud accout API key’
DEVICE_ID = ‘This is the ID of your Bolt device’

SID and AUTH token already there in the screen shot provided itself, FROM_NUMBER will be the US number that Twilio will be providing you. The API_KEY and DEVICE_ID could be found by logging into the bolt cloud, Fill in those information save conf.py. Now goto https://trainings.boltiot.com/courses/429176/lectures/6656729 make the temp_sms.py from the source provided there. Save the file . Run sudo python3 temp_sms.py from the terminal and you will be getting an SMS in your registered mobile number.

1 Like

copy the AUTH_TOKEN,SID,FROM_NUMBER,TO_NUMBER

Make the following as a file in your ubuntu

SID = ‘You can find SID in your Twilio Dashboard’
AUTH_TOKEN = ‘You can find on your Twilio Dashboard’
FROM_NUMBER = ‘This is the no. generated by Twilio. You can find this on your Twilio Dashboard’
TO_NUMBER = ‘This is your number. Make sure you are adding +91 in beginning’
API_KEY = ‘This is your Bolt Cloud account API key’
DEVICE_ID = ‘This is the ID of your Bolt device’

Note that API_KEY and DEVICE_ID are available in your bolt cloud

1 Like