[DiscordArchive] i need to send ascii characters, right?
[DiscordArchive] i need to send ascii characters, right?
Archived author: Whatwhatwhat • Posted: 2025-10-16T12:17:10.122000+00:00
Original source
i need to send ascii characters, right?
Archived author: Tea • Posted: 2025-10-16T12:17:53.120000+00:00
Original source
yes (utf8)
Archived author: Whatwhatwhat • Posted: 2025-10-16T12:26:15.168000+00:00
Original source
they are encoding with ascii here instead of utf8 https://github.com/wowdev/Ribbit.NET/blo.../Client.cs
[Embed: Ribbit.NET/Ribbit.NET/Source/Protocol/Client.cs at master · wowdev...]
Contribute to wowdev/Ribbit.NET development by creating an account on GitHub.
https://github.com/wowdev/Ribbit.NET/blo.../Client.cs
Archived author: Whatwhatwhat • Posted: 2025-10-16T12:26:42.089000+00:00
Original source
in any case it's not working with ascii nor with utf8 for me :/
Archived author: MaxtorCoder • Posted: 2025-10-16T12:27:06.417000+00:00
Original source
You have to remember that v1 endpoint is deprecated and v2 is required (Which essentially just does a HTTP request)
Archived author: Whatwhatwhat • Posted: 2025-10-16T12:27:44.383000+00:00
Original source
```ByteBuffer bb = StandardCharsets.UTF_8.encode(endpoint + "\r\n");
socket.getOutputStream().write(bb.array(), 0, bb.array().length);
socket.getOutputStream().flush();```
Archived author: Whatwhatwhat • Posted: 2025-10-16T12:28:18.225000+00:00
Original source
doesn't work with ASCII and v2 neither
Archived author: Whatwhatwhat • Posted: 2025-10-16T12:28:21.854000+00:00
Original source
hmmm
Archived author: MaxtorCoder • Posted: 2025-10-16T12:28:29.697000+00:00
Original source
You don't send a request to v2 really tho
Archived author: Whatwhatwhat • Posted: 2025-10-16T12:29:23.921000+00:00
Original source
what do i miss?