Postman Twilio Rest Api

后端 未结 2 2038
谎友^
谎友^ 2021-02-07 10:51

Hi I was wondering if someone could help me ,I am trying to use twilios\' rest api and im running into some trouble. MyAccountIdSid,mySid and phone numbers are filled in in the

相关标签:
2条回答
  • 2021-02-07 11:25

    Note : Enhancement of Marcos Placona's Answer

    In the Authorization section, set 'AUTH TOKEN' in 'password' field. You can find 'AUTH TOKEN' just below Account Summary.

    https://www.twilio.com/console

    https://www.twilio.com/docs/api/errors/20003

    'Authenticate using your Account SID as the username, and your Auth Token as the password.'

    0 讨论(0)
  • 2021-02-07 11:27

    Twilio developer evangelist here.

    If you're copying it from here, be aware that the first part of it is the request, and the second is the response, so what you're trying to send to Twilio is the response, hence why it's not working for you.

    What you need to send to Twilio is the following:

    $ curl -XPOST https://api.twilio.com/2010-04-01/Accounts/ACXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/Messages.json \
        -d "Body=Jenny%20please%3F%21%20I%20love%20you%20<3" \
        -d "To=%2B15558675309" \
        -d "From=%2B14158141829" \
        -d "MediaUrl=http://www.example.com/hearts.png" \
        -u 'AC36b9a6be2f98274fe61d15b63aabf1e0:{AuthToken}'
    

    I've created a quick screeencast showing you how to do that with postman 2. Hope it helps you.

    0 讨论(0)
提交回复
热议问题