Release Notes
Announcements
rwuser and mongouser by default to support the MONGODB-CR and SCRAM-SHA-1 authentication methods, respectively. The connecting URIs for the two authentication methods are formed differently. For more information, please see Connecting to TencentDB for MongoDB Instance.func GetMgoURL(ip, user, password string, port int) string {urlString := ""if user == "" && password == "" {urlString = fmt.Sprintf("mongodb://%s:%d/admin", ip, port)}else {urlString = fmt.Sprintf("mongodb://%s:%s@%s:%d/admin", url.QueryEscape(user), url.QueryEscape(password), ip, port)}return urlString}url := service.GetMgoURL(reqPara.Ip, reqPara.User, reqPara.Password, reqPara.Port)session, err := mgo.Dial(url)
Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback