0
votes

When using the Microsoft Graph API (beta version), the following error occurs periodically when receiving teams messages:

Status Code: BadRequest.
Microsoft.Graph.ServiceException: Code: BadRequest
Message: Parameter 'DeltaToken' not supported for this request., this error occurs for request GET /teams/{id}/channels/{id}/messages/delta.

Usually everything works, but sometimes this error occurs. The application token is used for access.

This request in the code:

var request = GraphServiceClient.Teams[teamId]
        .Channels[channelId]
        .Messages
        .Delta()
        .Request();
1
Please edit your question and add more details: like, what is the request you're making? - Marco Aurelio Fernandez Reyes

1 Answers

0
votes

This seems to be a known issue. See it on GitHub. If there is no specific feature you are using in beta, I suggest you try v1.0 and see if you get the same issue