Asterisk originate response says successfully queued but nothing more

前端 未结 2 1249
执念已碎
执念已碎 2021-01-21 21:55

I once used pre-configured asterisk to make calls (using AMI). When I do that the response from originate used to have channel and unique id infos. Now I\'m trying to build a ne

2条回答
  •  执念已碎
    2021-01-21 22:12

    I experienced the same problem regarding receiving no OriginateResponse when using Async: true and the problem turned out to be permissions for the manager user account.

    The AMI user account needs to have either write permission "all" or write permission "call" (originate is not sufficient). Something like this:

    [username]
    secret=hello
    deny=0.0.0.0/0.0.0.0
    permit=127.0.0.1/255.255.255.0
    read=orignate,call
    write=originate,command,system,call
    

提交回复
热议问题