Problem with Values in Pages when not working on localhost

  • Platform information:
    • Hardware: Intel i3
    • OS: Win10
    • Java Runtime Environment: azul 17
    • openHAB version: 3.2.0

I have spend some hours to find the entry point of a problem…
I hope someone could show me the solution for it…
My Main Dashboard is a Touchscreen connected to a mini PC. On that Display everything is fine, because it polls the Infos in a Chrome Browser in Fullscreen Mode from https://localhost:8080/xxxxx

Now the Problem starts…
I want to create a different Page for my Parents, which should be displayed on an (old) extra Tablet. But this Page on the Tablet has to poll the Infos from https://192.168.0.8:8080/page/parents

When i open the second page for my Parents on the Main Machine https://localhost:8080/page/parents
everything is displayed as expected, for example the next iCalender Title is displayed.

But when i open the page from https://192.168.0.8:8080/page/parents the iCalender is not displayed, and the state of a Blindspot Switch is not displayed.

Is there a possibility to allow the “external” URLs or did i miss something else?
Any tip is welcome, also please let me know if i missed something to read.

Thank you very much

Share the configuration of the pages and what exactly is not working, so that someone can maybe help

Sounds like it may be an authorization problem, some possible tips starting here

The Code of the Page is:

config:
  label: opa
  sidebar: true
  visibleTo:
    - role:administrator
    - role:user
blocks:
  - component: oh-block
    config: {}
    slots:
      default:
        - component: oh-grid-row
          config: {}
          slots:
            default:
              - component: oh-grid-col
                config: {}
                slots:
                  default:
                    - component: oh-clock-card
                      config:
                        dateFontSize: 28px
                        dateFontWeight: bold
                        dateFormat: dddd, DD. MMMM YYYY
                        datePos: below
                        showDate: true
                        timeFontSize: 20px
                        timeFormat: HH:mm
        - component: oh-grid-row
          config: {}
          slots:
            default:
              - component: oh-grid-col
                config: {}
                slots:
                  default:
                    - component: oh-label-card
                      config:
                        fontSize: 28px
                        item: opagcal_TiteldesaktuellenEintrags
                        title: Termine heute
  - component: oh-block
    config: {}
    slots:
      default:
        - component: oh-grid-row
          config: {}
          slots:
            default:
              - component: oh-grid-col
                config: {}
                slots:
                  default:
                    - component: oh-label-card
                      config:
                        item: sozial1switch_LetzteAnderung
masonry: null
grid: []

To make my Problem more clear i added 2 screenshots

local-on-openhabpc

General the page is working, but only if you open it on the local machine.

Is there any error message on openhab.log or state chance in event.log when /before you open the page?