Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

为啥websocket创建没有 data.chat_config.parameters参数

Open
#134 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
3/5
Estimated time
1-2 days
Newbie friendliness
35/100
Issue type
Bug
Clarity
Needs clarification
Activity status
Stale
Tech stack
java
Domain
api

Research direction

Start with com.coze.openapi.client.websocket.event.model.ChatConfig and inspect the websocket creation request model and serialization path. Compare the available ChatConfig fields with the expected data.chat_config.parameters field, then verify the request output or a relevant test once the behavior is corrected.

Written by the indexing model from the issue text.

Description

package com.coze.openapi.client.websocket.event.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Map;

public class ChatConfig {
@JsonProperty("conversation_id")
private String conversationId;
@JsonProperty("user_id")
private String userId;
@JsonProperty("meta_data")
private Map<String, String> metaData;
@JsonProperty("custom_variables")
private Map<String, String> customVariables;
@JsonProperty("extra_params")
private Map<String, String> extraParams;
@JsonProperty("auto_save_history")
private Boolean autoSaveHistory;

Dominant language
Java
Stars
214
Forks
97
PR merge metrics
No merged PRs in 30d

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from coze-dev/coze-java

All issues in coze-dev/coze-java

Similar issues

More Java issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.