The "@odata.nextLink" from "List of Replies" in Logic App Teams Connector is a graph API url, we cannot run it in HTTP GET without authorization.
The URL looks in the following format: https://graph.microsoft.com/v1.0/teams/4bc904df-9999-4411-1111-b0183952acd1/channels/19:b6e50b94a0594b50821234563b29@thread.skype/messages/177022984561/replies?$top=50&$skiptoken=MSwwLDE3NzE2MzE3AAAA. (information in url is changed.)
In the case that getting message, it was return a logic app URL and we can run it.
The error message is below:
{
"statusCode": 401,
"headers": {
"Transfer-Encoding": "chunked",
"Vary": "Accept-Encoding",
"Strict-Transport-Security": "max-age=31536000",
"request-id": "8329754e-9c1d-4de6-bda1-27587b523d07",
"client-request-id": "8329754e-9c1d-4de6-bda1-27587b523d07",
"x-ms-ags-diagnostic": "{\"ServerInfo\":{\"DataCenter\":\"West US\",\"Slice\":\"E\",\"Ring\":\"4\",\"ScaleUnit\":\"003\",\"RoleInstance\":\"SJ1PEPF00001C54\"}}",
"WWW-Authenticate": "Bearer realm=\"\", authorization_uri=\"https://login.microsoftonline.com/common/oauth2/authorize\", client_id=\"-c000\"",
"Date": "Sat, 14 Mar 2026 03:59:33 GMT",
"Content-Type": "application/json",
"Content-Length": "265"
},
"body": {
"error": {
"code": "InvalidAuthenticationToken",
"message": "Access token validation failure. Invalid audience.",
"innerError": {
"date": "2026-03-14T03:59:33",
"request-id": "8329754e-9c1d-4de6-bda1-27587b523d07",
"client-request-id": "8329754e-9c1d-4de6-bda1-27587b523d07"
}
}
}
```}