Страница 1 из 1

Получить данные из Authenticate

Добавлено: 24 май 2012, 23:59
nickel82
Помогите пожалуйста победить.

exten => s,n,Authenticate(/ххх/yyy/fail,a)

по доке должно выходить что по опции (а) должен устанавливать account code в значение введенного пароля. Этот пароль будет сохранен в поле "accountcode" CDR записи и будет установлено в значении переменной канала ${ACCOUNTCODE}.
он создает отдельную account code.csv и туда пишет логи, но переменную ${ACCOUNTCODE} не выдает, то есть например:

exten => s,n,NoOp(${ACCOUNTCODE})
exten => s,n,SayDigits(${ACCOUNTCODE})

на выходе:
...SayDigits............("")
то есть приходит пустота.

в чем я ошибся? и как можно набранные числа получить в переменную по другому?
elastix 2.0.4 asterisk 1.6.2.13

Re: Получить данные из Authenticate

Добавлено: 25 май 2012, 00:20
ded
exten => s,1,Answer
exten => s,n,Wait(2)
exten => s,n,Read(mycode)
exten => s,n,Set(ACCOUNTCODE=$mycode)
exten => s,n,NoOp(${ACCOUNTCODE})
exten => s,n,SayDigits(${ACCOUNTCODE})
sip*CLI> core show application Read
sip*CLI>
-= Info about application 'Read' =-

[Synopsis]
Read a variable

[Description]
Read(variable[|filename][|maxdigits][|option][|attempts][|timeout])

Reads a #-terminated string of digits a certain number of times from the
user in to the given variable.
filename -- file to play before reading digits or tone with option i
maxdigits -- maximum acceptable number of digits. Stops reading after
maxdigits have been entered (without requiring the user to
press the '#' key).
Defaults to 0 - no limit - wait for the user press the '#' key.
Any value below 0 means the same. Max accepted value is 255.
option -- options are 's' , 'i', 'n'
's' to return immediately if the line is not up,
'i' to play filename as an indication tone from your indications.conf
'n' to read digits even if the line is not up.
attempts -- if greater than 1, that many attempts will be made in the
event no data is entered.
timeout -- An integer number of seconds to wait for a digit response. If greater
than 0, that value will override the default timeout.

Read should disconnect if the function fails or errors out.

Re: Получить данные из Authenticate

Добавлено: 25 май 2012, 00:25
Aven
Читайте еще раз внимательно!
a: Set the channels' account code to the password that is entered