Haaska Alexa

hi everyone, I installed haaska and the final test was positive, but after activating the skill, I can’t find any home assistant devices.
how come i can’t see them on alexa?

did you in alexa app discover devices?

right lower corner > the the + upper richt corner > add devices > scroll down click “other” > click Discover Devices

yes I tried but I only find a television, all the other devices do not find them (robot vacuum cleaner).

You see them in the test on develop console?

Use the Lambda interface to test that haaska can reach your service.

  1. Log in to the Lambda console.
  2. Click on your “haaska” function.
  3. Click on the “Test” button at the top right of the page.
  4. Give the test a custom name in the “Event name” field. Copy the following JSON in to the test console:
{
  "directive": {
    "header": {
      "namespace": "Alexa.Discovery",
      "name": "Discover",
      "payloadVersion": "3",
      "messageId": "1bd5d003-31b9-476f-ad03-71d471922820"
    },
    "payload": {
      "scope": {
        "type": "BearerToken",
        "token": "access-token-from-skill"
      }
    }
  }
}
  1. Click “Create”, and your test should now be listed in the drop-down box beside the “Test” button.
  2. Click the “Test” button, and if the test succeeds, a green checkmark will appear. Congratulations! Your haaska function can communicate with your Home Assistant install.
    If there is a problem, and the test fails, please expand the “Details” section. Copy the contents of the result text box, and see our “Need help?” section.