-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Quick dump of some bits of API stuff I found that isnt documented #16
Comments
You can POST to |
When joining a private group the currently documented way (
To get all of the current pending membership requests for a group that you manage, you can Accepting join requests is done via a POST to |
you can change your accounts password with a POST to Access tokens appear to be changed independently from your password, when changing your password via the web client the client also sends a request to |
you can get a list of public groups with a GET to |
This is becoming a big help with a library I am developing, I am thankful :D |
For sure! Glad I could help. If there's anything in specific you're hunting for don't be afraid to ask. I'd be happy to look for it. |
@AlureonTheVirus Hey! Not the guy you were talking to BUT do you know if there's an API call made when someone likes/unlikes a message? |
Not quite sure what you mean... How to fetch likes from the API manually or how to get notified by the API on a like event? for catching like events I know that you can get a lot of real time information through groupme's push API with websockets. There is very little documentation on how that works though so you will have to build your own implementation from scratch or check out the example websocket bot in the community docs repo. I believe manually polling for likes in a group or a specific message is already a documented feature of the REST API. (I may be wrong. I'll edit this response after I read the docs again lol) EDIT: fetching stuff regarding likes from the REST API is documented here: https://github.com/groupme-js/GroupMeCommunityDocs/blob/master/likes.md It looks like you have to poll the specific group you want to know about for likes. it's easier to see your own likes via polling with the "my hits" call, but any useful stuff will probably need to be done via the real time websocket interface instead of the REST API. I'll have to work on writing a decent standalone WS wrapper for groupme and some documentation to really make this an easy solution but it's totally possible if you're willing to look at examples and comb through the push documentation on dev.groupme.com |
To delete a topic, use DELETE to |
A GET request to
/groups/:group_id/subgroups
returns an array of all of the subtopics/subgroups associated with a group.When creating a group via a POST to
/groups
, adding the parameter"type" : "announcement"
will create a read-only group that the owner and group admins post in exclusively.I don't have much time at the moment so I'll post more later.
The text was updated successfully, but these errors were encountered: