using System;
using System.Collections.Generic;
using System.IO;
using System.Net.Http;
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.gugudata.com/ai/chinese-zodiac-period-insight?appkey=YOUR_APPKEY");
request.Content = new FormUrlEncodedContent(new Dictionary<string, string>
{
{ "zodiac", "马" },
{ "birthYear", "N/A" },
{ "period", "today" },
{ "targetDate", "N/A" },
{ "language", "zh-CN" },
{ "responseMode", "sync" },
{ "streaming", "false" }
});
var response = client.SendAsync(request).Result;
Console.WriteLine(response.Content.ReadAsStringAsync().Result);