-
Notifications
You must be signed in to change notification settings - Fork 252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Creating private channel not working in version 5.13 #1968
Comments
Thanks for raising this @TimScholzESC Any chance you can share the output strings when running the two versions when you run the following code on the var serializationWriter = graphClient.RequestAdapter.SerializationWriterFactory.GetSerializationWriter("application/json");
serializationWriter.WriteObjectValue(string.Empty, privateChannel);
using StreamReader reader = new StreamReader(serializationWriter.GetSerializedContent());
var jsonPayload = await reader.ReadToEndAsync();
Console.WriteLine(jsonPayload); |
This is the output for the same code: 5.12: 5.13: |
Thanks for the feedback here @TimScholzESC To confirm, can share how the At the moment, I still do get the "members" array populated with
|
This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. |
Thanks for the respond @andrueastman. |
Hi, @andrueastman
|
Describe the bug
Creating Private Team Channel not working in version 5.13
To Reproduce
Working Code from 5.12
Not working anymore in Version 5.13
Response:
{"code":"BadRequest","message":"CreateChannel_Private: Cannot create private channel, no members specified when calling from an Application."}
Can't see any changes to docu if there was a wanted change to the behavior to this.
The text was updated successfully, but these errors were encountered: