尝试在没有 Post 的情况下获取 API

问题描述 投票:0回答:1

我正在尝试开发一个 Api,它从 GitHub 的 API 获取信息,然后将所选信息作为 JSON 放在我的页面上。首先,我只做了一个控制台应用程序来请求信息,它工作正常 - 我可以获得我需要的所有信息。 虽然我从未使用过 API,但我不知道如何跟进。主要目标是通过 GET 请求使用此信息。

我现在的代码是这样的:

private static List<Info> infos = new List<Info>();

    public List<Info> Get()
    {
        Post();
        return infos;
    }

    public void Post()
    {

        try
        {
            GetData().Wait();
        }
        catch (Exception e)
        {
            Console.WriteLine("Error" + e);
        }

    }


    public static async Task<string> GetData()
    {
        var url = "https://api.github.com/users/MatheusReimer/repos?sort=created&direction=desc";
        using (HttpClient client = new HttpClient())
        {
            client.BaseAddress = new Uri(url);
            client.DefaultRequestHeaders.Add("User-Agent", @"Mozilla/5.0 (Windows NT 10; Win64; x64; rv:60.0) Gecko/20100101 Firefox/60.0");
            Console.WriteLine(client.BaseAddress);
            HttpResponseMessage response = await client.GetAsync(url);
            string strResult = await response.Content.ReadAsStringAsync();
            JToken token = JArray.Parse(strResult);
            dynamic ResultArray = Newtonsoft.Json.JsonConvert.DeserializeObject(strResult);

            //TESTING -------- var description = ResultArray[0].description;
            List<Info> jsonobj = new List<Info> { };
            foreach (dynamic array in ResultArray)
            {
                Info a = new Info();
                a.Description = array.description;
                a.CreatedAt = array.created_at;
                a.Language = array.language;
                a.ImageLocatedAt = array.owner.avatar_url;
                a.Title = array.name;
                jsonobj.Add(a);

            }
            Console.WriteLine(jsonobj.Count);
            int repoCounter = 0;
            for (int i = (jsonobj.Count - 1); i > 0; i--)
            {
                if (jsonobj[i].Language == "C#" && repoCounter <= 2)
                {
                    //Console.WriteLine($"\nData: {jsonobj[i].CreatedAt} \nDescricao: {jsonobj[i].Description} \nImage located at: {jsonobj[i].ImageLocatedAt}\nTitle: {jsonobj[i].Title}\n\n\n");
                    Info grabedInfo = new Info();
                    grabedInfo.Description = jsonobj[i].Description;
                    grabedInfo.CreatedAt = jsonobj[i].CreatedAt;
                    grabedInfo.Language = jsonobj[i].Language;
                    grabedInfo.ImageLocatedAt = jsonobj[i].ImageLocatedAt;
                    grabedInfo.Title = jsonobj[i].Title;
                    infos.Add(grabedInfo);
                    repoCounter++;
                }
            }

            var json = JsonConvert.SerializeObject(jsonobj);


            return strResult;
        }
    }

但这显然行不通,现在最好的办法是什么?

c# .net github-api
1个回答
0
投票

两个服务器 HTTP 方法不应互相调用。这违反了单一职责原则,并且违背了 MVVM/MVC 框架的模式,例如在 .NET 中实现的框架


话虽如此,所示示例不需要 POST。

首先,让你的方法实际返回正确的值

public static async List<Info> GetData() { 
   ...
   List<Info> jsonobj = new List<Info> { };
   ...
   return jsonobj;
}

然后更改您的服务器以使用它

public List<Info> Get()
{
    return GetData();
}

我还建议将“业务逻辑”代码从“控制器”中移开,并通过构造函数注入它。 请参阅此处 ASP.NET

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.