Skip to content

Instantly share code, notes, and snippets.

@xperylab
Created December 14, 2020 07:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xperylab/e47fef4c695ff1b6f94bbb3fd4a1ae39 to your computer and use it in GitHub Desktop.
Save xperylab/e47fef4c695ff1b6f94bbb3fd4a1ae39 to your computer and use it in GitHub Desktop.
Snapchat CONTENT_OBJECT_TABLE protobuf
syntax = "proto2";
message root {
required string id = 2;
optional string key = 3;
optional string iv = 4;
required uint64 timestamp = 5;
optional chat_prop chat_props = 9;
required uint64 timestamp2 = 15;
required string timestamp3 = 20;
optional chat_prop chat_props2 = 21;
}
message chat_prop{
required string endpoint = 1;
required string id = 4;
required keyvalue key_values = 7;
required mediaprop mediaprops = 15;
}
message keyvalue {
required string key = 1;
required string value = 2;
}
message mediaprop {
required string id = 1;
required string snap_type = 2;
required string media_type = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment