IK1L1
(IK1L1)
October 22, 2021, 11:17am
#1
Recently I looked at the Groups API (V1) and I came across /v1/groups/{groupId}/wall/posts
.
I was wondering if you can send things to the Group Wall through the API. I know what to put in the groupId
box, but not the request
box.
Images
Does anyone know what I put there?
Thanks in advance.
1 Like
Roblox blocks api requests to prevent essetially botting
1 Like
IK1L1
(IK1L1)
October 22, 2021, 11:20am
#3
So why is the thing even there?
It’s used internally by Roblox. You can, however, access the endpoints by using a proxy.
Another alternative would be:
Hey developers,
After nearly a year of planning, implementation, and beta testing, we’re excited to announce that Open Cloud is now live! Open Cloud aims to provide a secure and flexible platform that allows you to access your Roblox resources e.g. your assets, places, player data, etc. through standardized web APIs. In the long term, we envision a prosperous application ecosystem that can be empowered by Open Cloud, where you can build your own tools and find all kinds of 3rd party apps that h…
IK1L1
(IK1L1)
October 22, 2021, 1:03pm
#5
I already have a proxy, so I can do this but I just want to know what I put in there.
The API shows you on the far right of the page:
{
"body": "The content to be posted",
"captchaId": "",
"captchaToken": "",
"captchaProvider": ""
}
I’m not sure what content should be posted for the captcha keys, but it’s required.
You can click the yellow box to copy the request data template. Unfortunately, posting group wall posts requires a captcha token and only Roblox has these.
1 Like
https://groups.roblox.com/docs#!/Wall/get_v1_groups_groupId_wall_posts
For this particular API, you’ll need to append a query string with the following parameters:
groupId sortOrder, limit & cursor. groupId is simply, the ID of the group you wish to look at the wall posts of, sortOrder just sorts the posts in either ascending or descending order, limit controls the number of posts to observe in a single request & finally cursor manages which page of posts to look at.
The following is an example of the API in use:
https://groups.roblox.com/v1/groups/1/wall/posts?sortOrder=Asc&limit=100
IK1L1
(IK1L1)
October 22, 2021, 4:55pm
#9
So it seems I cannot do anything with it.
Thanks for the help everyone!