30 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
148
views
GroupMe Push Setup
I am trying to follow the instructions listed on the GroupMe Website to enable my python program to receive real-time messages from a group. In step 2 of the process the response I got was
'successful'...
1
vote
2
answers
216
views
Groupme API Has No Support for Topics
I would like to have bots that post in the topics beneath a group. For a user, these topics present as separate sub-groups. However, they seem to have no ID tied to them. Is there a parameter I can ...
1
vote
1
answer
194
views
How do I properly pass an group ID parameter into the GroupMe API
I am trying to return a specific group by ID in GroupMe using Python. The official documentation states that, to get a specific group, you append the base URL with /groups/:id and add the group ID ...
0
votes
0
answers
85
views
GroupMe bot sending videos but not text
Good morning.
My group has a GroupMe bot, which was coded long before I joined the group. It stopped sending text responses, but continues to send image & video responses.
The code for the bot ...
0
votes
1
answer
74
views
GroupMe API call returning [Object] instead of actual json
Ok, so I am new to this stuff. I am attempting to make a Bot on GroupMe and need a list of the group's members. Here is my current call. The response looks good except for the member's key.
const rp = ...
0
votes
2
answers
513
views
Sequentially combine data from multiple GET requests in node.js
I am writing a node.js app with the http module and am trying to combine data from multiple GET requests to produce a result. I checked similar problems but they all involve async.map to init requests ...
0
votes
1
answer
72
views
Name and nickname returned are the same for group members
This is my request code:
data = requests.get(
f"https://api.groupme.com/v3/groups/{group_id}?token=token123"
).json()['response']
Which returns something along the lines of this:
"members": [{
...
0
votes
0
answers
188
views
Is there any way to send GroupMe's Image or Location attachments from a Bot Framework bot?
I'm building a Bot Framework bot which is connected to the GroupMe channel. According to the (non Bot Framework specific) GroupMe Bot tutorial, GroupMe supports bots sending Image or Location ...
0
votes
2
answers
759
views
Why would a callback URL not work (for a GroupMe bot)?
I am creating a GroupMe bot, and I'm testing out the callback URL and the basic WSGI app I've set up so far. I am planning host the bot on Heroku, but am testing it on my local machine first. I ...
0
votes
0
answers
49
views
How to avoid GroupMe bot from reading the same message twice when restarted on Heroku?
So essentially, my GroupMe bot will read in messages and look for specific commands.
Heroku automatically restarts my Dyno worker at least once every day.
However, when it does restart, my bot will ...
0
votes
1
answer
565
views
Routing an image through GroupMe's image service with Python
I'm using requests to make a POST request to GroupMe's image service that should return a URL of the hosted image that I can use to post to a GroupMe thread. The documentation mentions that I need my ...
0
votes
1
answer
592
views
GroupMe bot is not sending images along with it's text
As the title says, I am trying to have my GroupMe bot post images to the group along with some text. Here is my current code:
post_params = {'bot_id': '123456789',
'text': message,
...
2
votes
1
answer
266
views
My Heroku app seems to be running more than 1 instance
As the title says, I have an app hosted on Heroku that seems to have more than one instance running. This is a problem because I am trying to keep track of single letter posts on a GroupMe in order ...
1
vote
1
answer
245
views
Character Encoding error with Groupme bot using Groupy library
I am trying to get started writing a Groupme bot using Groupy.
There have been a few related posts to this one, but they seemed a bit more technically challenging of issues, the solutions didn't seem ...
2
votes
1
answer
496
views
GroupMe Mention API
I'm creating a GroupMe bot that will serve to help me manage a few large groups which I'm the admin of. For now, I have decided to build a simple test bot using Javascript on a simple HTML page ...