I am working on a project that involves adding users to groups in Azure Web PubSub using the WebPubSubServiceClient in C#. However, I am facing an issue and could use some guidance.
When attempting to add a user to a group, I encounter the following error:
Result: Error occurred while adding user to group
Exception: Azure.RequestFailedException: Service request failed.
Status: 403 (Forbidden)
Code Snippet:
var service = new WebPubSubServiceClient(new Uri($"https://{hostName}.webpubsub.azure.com"), hub, new DefaultAzureCredential());
service.AddUserToGroup(groupName, request.ConnectionContext.UserId);
Tried also
var service = new WebPubSubServiceClient(connectionString, hub);
service.AddUserToGroup(groupName, request.ConnectionContext.UserId);
Context:
I have confirmed that the hub and groupName exist. The request.ConnectionContext.UserId is correctly set. I am using the Azure.WebPubSub Contributor role.
I am calling this code in Azure Function App.
Url Template I am using : https://domain/{event}
The code below generates a client access URL, connects a user to a group, and sends a message to the connected user using the Azure Web PubSub service.