12 Replies
pls past the complete code here not a blurry screenshot
$code
To post C# code type the following:
```cs
// code here
```
Get an example by typing
$codegif
in chat
For longer snippets, use: https://paste.mod.gg/oky
Can you wait a bit? I'm not available right now.
feel free to share whenever you're availalbe. Many people here to help
I can see something through the bluriness, so, uh, does
Api
class have a data1
property?using RestSharp;
using Discord.WebSocket;
using System.Threading.Tasks;
using Bot.Commands;
using Discord;
using Newtonsoft.Json;
namespace Bot.Command {
public class Translations
{
public string translatedText { get; set; }
}
public class Data
{
Translations translations { get; set; }
}
public class Api
{
Data data { get; set; }
}
public class ÇeviriCommmand : ICommand
{
public string CommandName => "!çeviri";
public async Task ExecuteAsync(SocketMessage message) {
string yazı = message.Content;
if (string.IsNullOrEmpty(yazı))
{
await (message as IUserMessage).ReplyAsync("Lütfen Bir Metin Girin");
}
var client = new RestClient("https://deep-translate1.p.rapidapi.com/language/translate/v2");
var request = new RestRequest("posts", Method.Post);
request.AddJsonBody(new
{
q = yazı,
source = "tr",
target = "en"
});
request.AddHeader("x-rapidapi-host", "deep-translate1.p.rapidapi.com");
request.AddHeader("Content-Type", "application/json");
RestResponse response = client.Execute(request);
Api sonuc = JsonConvert.DeserializeObject<Api>(response.Content);
var embed = new EmbedBuilder()
.WithDescription($"")
.Build();
await message.Channel.SendMessageAsync(embed: embed);
}
}
}
@ZZZZZZZZZZZZZZZZZZZZZZZZZ
$code
To post C# code type the following:
```cs
// code here
```
Get an example by typing
$codegif
in chat
For longer snippets, use: https://paste.mod.gg/And my previous comment stands, assuming the errors are still the same
Does
Api
have a data
property?read about access modifiers
sorru
sorry*
yes
and for some reason it doesn't send the embed message
Any other errors?