Closed EpicUsername12 closed 1 year ago
Are you saying you implemented all those endpoints? Because I'm not seeing any implementations for any endpoints besides POST /v1/communities
Are you saying you implemented all those endpoints? Because I'm not seeing any implementations for any endpoints besides
POST /v1/communities
No, I have only made the endpoint you mentionned, and the quality of the implementation is poor. My text describes the endpoints i'd like to implement in the future!
The code isn't good at all, but works enough so the game keeps going on, we need to find the real expected responses
Mario Kart 8 doesn't use a custom Miiverse RPL, so they are all real shared functions of Miiverse available to all games.
POST Requests:
/v1/communities
(create)/v1/communities/%s
(edit)/v1/communities/%s.delete
(remove)/v1/communities/%s.favorite
/v1/communities/%s.unfavorite
%s
represents some unknown ID, like 3905042148So the request would be for example:
POST /v1/communities/3905042148
GET Requests:
/v1/communities?limit=4&type=my
/v1/communities?limit=16&type=favorite
So we need to implement the creation of subcommunities by our users, with a limit of 4 per user, and of course the per-user favorites.