Skip to content

Instantly share code, notes, and snippets.

@BinaryMuse
Forked from fafnirical/change-photo.md
Last active May 10, 2024 17:50
Show Gist options
  • Save BinaryMuse/1ca54a71c780651b83bea457304cd423 to your computer and use it in GitHub Desktop.
Save BinaryMuse/1ca54a71c780651b83bea457304cd423 to your computer and use it in GitHub Desktop.
Change your profile photo for all meetup groups

I haven't found a way to set your main profile photo on meetup.com such that it overrides any old photos you have set in individual groups. This script will do just that — set your group specific profile photo to your main photo for every group you're in.

Here's what to do:

  1. Go to your main profile page: http://www.meetup.com/profile/
  2. Ensure you've set your main profile photo to the photo you want to use in all your groups.
  3. Open your browser's developer tools (often F12 on Windows, cmd+opt+i on macOS), copy the following code, paste it in the Console tab, and press enter:
(async function() {
  var imageSrc = document.querySelector('#member-profile-photo img').getAttribute('src')
  var match = /member_(\d+)\./.exec(imageSrc)
  if (!match) {
    console.error(`Couldn't find your photo ID! Are you on https://www.meetup.com/profile ?`)
    return
  }
  var imageId = match[1]

  var groups = new Set()
  Array.from(document.querySelectorAll('[data-chapterid]'))
    .map(el => el.getAttribute('data-chapterid'))
    .forEach(groups.add.bind(groups))

  for (var groupId of [...groups]) {
    console.log(`Changing profile photo for ${groupId}`)
    try {
      await $.post('https://www.meetup.com/api/', {
        method: 'makeGroupProfilePhoto',
        arg_member: '56746842',
        arg_chapter: groupId,
        arg_memberPhotoId: imageId,
      })
    } catch (err) {
      console.error(`Failed to change profile photo for ${groupId}`)
    }
  }

  console.log(`Done!`)
})()
@victorface2
Copy link

^ Can confirm working as of July 6th 2023 also (following instructions from CDeLeon94)

@bruderda
Copy link

bruderda commented May 10, 2024

I didn't try this script, but I noticed that I couldn't even find a way to manually change my profile picture for a specific group anymore. But when I deleted my old profile photo, my new one started showing on all groups. Delete via View profile > Change profile photo > Choose from library > Manage photos.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment