I'm getting the following error "unmarshaling error: proto: cannot parse reserved wire type" while unmarshaling a binary protobuf message.
newMessage := &MessageName{}
err = proto.Unmarshal(data, newMessage)
Here for data I'm reading from Protobuf Binary file whose contents look something like the Binary format given here -> What does the protobuf text format look like?
After reading the file and storing in data, data looks something like this [23 67 102 56 ... ]
How to fix this error?