He did and it still didn’t work…
GroupMe SMS is only for the US.
This is in the US
Mention everyone in a group programmatically. (all members of the group will get it even if they are muted so be cautious.)
def mention_all(token, group, message):
url = f"https://api.groupme.com/v3/groups/{group}/messages?token={token}"
response1 = requests.get(f"https://api.groupme.com/v3/groups/{group}?token={token}")
if response1.ok:
members = response1.json()['response']['members']
uids = [member['user_id'] for member in members]
name = "@all"
message = name + message
loci = [[0, len(name) + 1] for _ in uids]
data = {"message": {'source_guid': str(datetime.now().timestamp()),'text': f"@{message}",'attachments':[{'type': 'mentions', 'user_ids': uids, 'loci': loci}]}}
response = requests.post(url, json=data)
Your missing half the script… but this is pretty much it
huh? what am i missing? That’s the full logic. (i imagine someones putting it in a bot. It isn’t meant to do it itself. If people are interested i can make it into a full bot)
i actually just stripped that from a larger groupme bot i have setup.
I will probably set this up after Yom Tov for myself.
Now that this is done you can focus on making a script that somehow takes a screenshot of all emails in the inbox and sends it thru SMS to the user.
GroupMe will not work because it does not send MMS to flip phones.
I don’t know if you’re comfortable with coding and Python but if yes, I made a python script a while ago for listing, reading and sending emails via SMS. I made it a while ago and never fixed it up but you can have a look and use it as is or mod it and use it
I also meet myself once it is through Google apps script, that can get me through SMS all of my emails, but it was too big so I did just the sender and subject.
But I really want a screenshot of the emails, sent as an MMS to a flip phone and it should be completely free.
That is probably very complicated.
I wish there was a feature that can forward the text as well to email
sometimes I’m getting long messages and on the phone its a mess because i have 18 messages not in order…
I can do that for you. Reach out to me. Do you want all messages or only the long ones?
Is there a bot that can send on a groupme group messages from a whatsapp group?
Yes
That is a Question for WhatsApp people
In summary if you get the WhatsApp messages you can send it to GroupMe
Wow that’s a fast response
Who can I ask? Who will know?
The question is if your WhatsApp will get banned if they detect it
Copilot
Yes — several WhatsApp‑compatible options can receive incoming messages and forward them to your callback URL, but they all fall under the WhatsApp Business API / WhatsApp Cloud API ecosystem. WhatsApp does not allow arbitrary bots on personal numbers, so any solution that supports callbacks must use Meta’s official API or a provider built on top of it.
Reliable ways to receive WhatsApp messages via webhook (callback URL)
WhatsApp Cloud API (Meta) — native webhook support
You register a webhook URL in your Meta Developer app. Incoming messages, message status updates, and events are POSTed to your callback URL.
This is the official method and works with any HTTPS endpoint.
Sources confirm that WhatsApp Cloud API uses webhook callbacks for incoming messages and status updates .
WhatsApp Business API providers (e.g., Kaleyra, Twilio, 360dialog, Vonage)
These platforms expose a WhatsApp API and let you configure a webhook URL where all inbound messages are forwarded.
Kaleyra’s documentation explicitly describes incoming message callbacks to a user‑defined URL .
Self‑hosted libraries wrapping the Cloud API
Libraries like python‑whatsapp-wrapper or python‑whatsapp-bot show how to build a webhook server that receives WhatsApp callbacks from Meta. They rely on the same webhook mechanism and require you to configure your callback URL in the Meta Developer dashboard .
What this means for you
If your goal is:
“A WhatsApp bot that receives messages and sends them to my callback URL”
→ Yes, this is exactly how the WhatsApp Cloud API works. You set a webhook URL, verify it, and WhatsApp will POST every incoming message to your endpoint.
“A bot that works like GroupMe bots (simple HTTP callback, no approval)”
→ WhatsApp does not allow this on personal accounts. You must use a WhatsApp Business API number.
So if you want to use a business WhatsApp number probably
@Dev-in-the-BM_2.0 Any idea?
I have zero experience with WhatsApp.
All I know is that they don’t have an official public API.
Can I make a gps tracking system with a group me bot (I have a Google maps API)
What do you want to track?