I am using mgo library for mongo operationg in golang and here is my code :
session.SetMode(mgo.Monotonic, true)
coll := session.DB(\"aaaw_web\").C(\"cron_em
As the error message hints, an object id is exactly 12 bytes long (12 bytes of data). The 24 char long ID you see printed is the hexadecimal representation of the 12 bytes of the ID (1 byte => 2 hexa digits).
Use the bson.ObjectIdHex() function to obtain a value of bson.ObjectId if the hex representation is available.
err = coll.FindId(bson.ObjectIdHex(message.ID)).One(&result)
For the reverse direction, you may use the ObjectId.Hex() method, detailed in this answer: Obtain ObjectIdHex value from mgo query
What you did in your code is a simple type conversion (given that message.ID
is of type string
), and the syntax is valid because the underlying type of bson.ObjectId
is string
, so that basically interprets the 24 characters as bson.ObjectId
type, but it is an invalid ObjectId
value because it will be 24 bytes and not 12.