我是新手Octokit.Net
。
我想在我的程序中创建问题......
所以我这样编码。
var github = new GitHubClient(new ProductHeaderValue("Hello"));
var i = new NewIssue("asdf");
i.Body = "asdf";
var issue = github.Issue.Create("JoyLeeSoft", "test", i);
当我调用Create
函数时,函数总是抛出NotFoundException
.
错误消息只是“未找到”
但是,存储库是可用的。https://github.com/JoyLeeSoft/test
我该如何解决这个问题?