-
Notifications
You must be signed in to change notification settings - Fork 43
Finding Your ID
In order to find your unique Bitmoji ID, you need to make sure that you have the Bitmoji chrome extension installed. You also need to make sure that you have a registered account. If you do not have either of these things, please visit the home page for this repository to view the links for getting these things set up.
The way Bitmoji's comic strip rendering server works, you need to provide it with an ID. This ID can be of two different forms. The bitmoji_avatar_uuid
or the bitmoji_avatar_id
. Both can be used interchangably when creating comics images, but only one provides control of the style of the image. In order to provide more functionality, it's best to just obtain the avatar ID rather than the uuid. This guide will show you all the steps for getting your personal ID. Let's start!
- Browse to the Bitmoji homepage.
- Click the
Log In
button and enter your account information. - Click and drag the main
welcome back
image into a new tab. - Copy the URL of the image, and pass it to the
getAvatarId
function in Libmoji. This will return your uniquebitmoji_avatar_id
as a string.
console.log(libmoji.getAvatarId("https://render.bitstrips.com/v2/cpanel/8968038-316830037_35-s5-v1.png?transparent=1&palette=1"));
/* returns 316830037_35-s5 */
-
Ta-da! You now have your ID. Use it to generate all the comics that your heart desires! It's also worth noting, if you look more closely at the
bitmoji_avatar_id
, it cotains the strings5
. This portion determines which style of avatar you want to use. (1, 4, or 5) you can manually change this to modify what the comic will look like. Theuuid
does NOT allow this feature because it is a hashed version of the normal id. So when manipulating a comic, its best to use the standard ID. -
If for some reason you wanted to find your
bitmoji_avatar_uuid
, you will be able to find it saved in a cookie on the Bitmoji website. Yourbitmoji_avatar_id
is also saved here, this method is just a little more complex in my opinion.