Я не могу получить полный адрес от Alexa API.Вот код, который я использую:
const token = conv._alexaContext!.event.context.System.apiAccessToken
const deviceId = conv._alexaContext!.event.context.System.device.deviceId
const apiEndpoint = conv._alexaContext!.event.context.System.apiEndpoint
const hasPermission = conv._alexaContext!.event.context.System.user.permissions
const das = new Alexa.services.DeviceAddressService()
das.getFullAddress(deviceId, apiEndpoint, token)
.then((data: object) => {
console.log('City: ' + data)
})
.catch((error: any) => {
console.log(error.message)
})
К сожалению, консоль ничего не регистрирует.Так что не так?