Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

bugfix - Change the fetchChannelList from POST to GET #844

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ private ServiceResponse<TeamsMeetingParticipant> fetchParticipantDelegate(
interface TeamsService {
@Headers({ "Content-Type: application/json; charset=utf-8",
"x-ms-logging-context: com.microsoft.bot.schema.Teams fetchChannelList" })
@POST("v3/teams/{teamId}/conversations")
@GET("v3/teams/{teamId}/conversations")
CompletableFuture<Response<ResponseBody>> fetchChannelList(
@Path("teamId") String teamId,
@Header("accept-language") String acceptLanguage,
Expand Down