[SOLVED] Can not get Live Inspector to view data sent from TTN ("Forward uplink data message" seems to be success)

[SOLVED] Can not get Live Inspector to view data sent from TTN ("Forward uplink data message" seems to be success)

[Edit] Solution at the end

Hello everyone! I just tried setting up integration between TTN and TagoIO for my thesis project to create a simple dashboard to visualise data, but I am having trouble with TagoIO. I think I've set up the TTN webhook correctly, as I dont get any error when it tries to send data and it shows up as Healthy. Here is an example from the Live data window of TTN after sending data from my custom mobile app to my arduino lora device:

  1. {
      "name": "as.up.data.forward",
      "time": "2025-05-22T19:45:37.772680372Z",
      "identifiers": [
        {
          "device_ids": {
            "device_id": "end-leonardo",
            "application_ids": {
              "application_id": "thesis-app"
            },
            "dev_eui": "correct dev eui here",
            "join_eui": "correct join eui here",
            "dev_addr": "260B5529"
          }
        }
      ],
      "data": {
        "@type": "type.googleapis.com/ttn.lorawan.v3.ApplicationUp",
        "end_device_ids": {
          "device_id": "end-leonardo",
          "application_ids": {
            "application_id": "thesis-app"
          },
          "dev_eui": "correct dev eui here",
          "join_eui": "correct join eui here",
          "dev_addr": "260B5529"
        },
        "correlation_ids": [
          "gs:uplink:01JVWRF88SRW5YNZZDZTRAAWPP"
        ],
        "received_at": "2025-05-22T19:45:37.768336984Z",
        "uplink_message": {
          "session_key_id": "AZb5a3fI3wyI2Py7rhdYEA==",
          "f_port": 1,
          "f_cnt": 10,
          "frm_payload": "QlA6MTIwLzg4",
          "decoded_payload": {
            "ascii": "BP:120/88",
            "raw_hex": "42 50 3a 31 32 30 2f 38 38"
          },
          "rx_metadata": [
            {
              "gateway_ids": {
                "gateway_id": "lps8-gateway-thesis",
                "eui": "A840411FBC344150"
              },
              "time": "2025-05-22T19:45:37.508339Z",
              "timestamp": 2024333867,
              "rssi": -91,
              "channel_rssi": -91,
              "snr": 9.2,
              "location": {
                "latitude": lat,
                "longitude": long,
                "source": "SOURCE_REGISTRY"
              },
              "uplink_token": "CiEKHwoTbHBzOC1nYXRld2F5LXRoZXNpcxIIqEBBH7w0QVAQq8SjxQcaDAjh/b3BBhDF3ZqLAiD4782d9bQC",
              "channel_index": 1,
              "received_at": "2025-05-22T19:45:37.560377541Z"
            }
          ],
          "settings": {
            "data_rate": {
              "lora": {
                "bandwidth": 125000,
                "spreading_factor": 7,
                "coding_rate": "4/5"
              }
            },
            "frequency": "868300000",
            "timestamp": 2024333867,
            "time": "2025-05-22T19:45:37.508339Z"
          },
          "received_at": "2025-05-22T19:45:37.562274393Z",
          "consumed_airtime": "0.056576s",
          "version_ids": {
            "brand_id": "the-things-products",
            "model_id": "the-things-uno",
            "hardware_version": "1.0",
            "firmware_version": "quickstart",
            "band_id": "EU_863_870"
          },
          "network_ids": {
            "net_id": "000013",
            "ns_id": "EC656E0000000181",
            "tenant_id": "ttn",
            "cluster_id": "eu1",
            "cluster_address": "eu1.cloud.thethings.network"
          }
        }
      },
      "correlation_ids": [
        "gs:uplink:01JVWRF88SRW5YNZZDZTRAAWPP"
      ],
      "origin": "ip-10-100-14-127.eu-west-1.compute.internal",
      "context": {
        "tenant-id": "CgN0dG4="
      },
      "visibility": {
        "rights": [
          "RIGHT_APPLICATION_TRAFFIC_READ"
        ]
      },
      "unique_id": "01JVWRF8FC7PGE048FYJ1QFG49"
    }
When creating the webhook in TTN I added the Authorization key from TagoIO after naming it.

In TagoIO, I generate a token with my arduino Dev EUI which is the same as the one in TTN.

Im at a loss here why it seems data is successfully being sent from TTN to TagoIO, but I can't see it in any way.

Sorry if this seems silly to you more experienced folk, I literally just started using TagoIO a couple hours ago to proceed with my project.

Of course please let me know if you need any more info, and I will happily provide it.

[Solution]
I had to change the base url in the TTN webhook to this:
https://ttn.middleware.eu-w1.tago.io

This was not mentioned in pretty much any video or resource which I looked at, which all mentioned using the defaults.