Hi Jeffalo! I am currently testing a wasteof.money post creator with Node.js. Here is the source code:
import ky from "ky";
const token =
"token";
onst post = `bing bong`;
const response = await ky
.post("https://api.wasteof.money/posts/", {
headers: {
Authorization: token,
},
json: {
post: `<p>${post}</p>`,
repost: null,
},
})
.json();
const id = response.id;
console.log(`Post is live at https://wasteof.money/posts/${id}`);
This should make a post. To get the token make a post and then go to the Network tab and choose the `posts` request. Find the “Authorization” header and paste it’s value to the “token” variable in the code.
You can also get the token with node.js by making a request to https://api.wasteof.money/session with
json: {
"username": (your username)
"password": (your password)
}
it works like that, i am using it with got
, a node.js library for making requests with javascript
so this is how i made it (you make a post request)
import got from "got";
const { token } = await got
.post("https://api.wasteof.money/session", {
json: {
username: "account",
password: "password",
},
})
.json();
You should add a button like the most liked posts weekly, monthly and forever to switch between the to followers and top following leaderboards, I think that would be quite cool (not biased).
Is wasteof.money monetized, if so, have you been paying you taxes properly, If not, I will refer you to @IRS
Is there a site map for all the endpoints in api.wasteof.money somewhere?
Hey um can you please give me a list of every user on wo.m please :3
Could you add a way to report users? I found a ban evader who doesn’t have any posts, so I can’t report them.
Probably, but I can’t spend my life looking at every single post on wo.m to find that one comment I can report
Please do this I found someone abusing alts to follow themselves
I think you should add a bit of “margin-right” to the search bar in the explore page :)