This commit is contained in:
Arie Schwartzman 2017-12-06 11:44:11 +02:00 коммит произвёл GitHub
Родитель aedc5ea76e
Коммит 943a72eec5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -28,7 +28,7 @@ server.get('/ping', function (req, res, next) {
uri: 'https://directline.botframework.com/v3/directline/conversations',
headers:
{
Authorization: "Bearer " + process.env.BOT_SECRET
Authorization: "Bearer " + process.env.WEBCHAT_SECRET
},
json: true
}
@ -40,7 +40,7 @@ server.get('/ping', function (req, res, next) {
{
uri: uri, method: "POST",
headers: {
Authorization: "Bearer " + process.env.BOT_SECRET
Authorization: "Bearer " + process.env.WEBCHAT_SECRET
},
body: {
"type": "message",
@ -58,7 +58,7 @@ server.get('/ping', function (req, res, next) {
uri: uri,
method: "GET",
headers: {
Authorization: "Bearer " + process.env.BOT_SECRET
Authorization: "Bearer " + process.env.WEBCHAT_SECRET
},
json: true
}).then(function (data3) {