是否可以使用flurl向GraphQL API发送发布请求?
我已经尝试了以下方法,但是我只得到了错误提示。
var stringContent = @"query {
webhooks {
data {
id
name
topic
source
address
enabled
hashKey
}
}
}";
HttpContent content = new StringContent(stringContent, Encoding.UTF8, "application/graphql");
try
{
var test = await GRAPHQL_API_URL
.WithOAuthBearerToken(ACCESS_TOKEN)
.WithHeader("Content-Type", "application/graphql")
.PostAsync(content).ReceiveJson();
}
catch(Exception ex)
{
Console.WriteLine(ex.Message);
}
答案 0 :(得分:0)
API提供者做了一些事情,现在请求已被接受