Octokit.net で新しいリポジトリを作成する際に問題があります。
これは私のコードです:
public async Task stvoriNovi(FormCollection collection)
{
string name = collection.Get("name");
NewRepository newRepo = new NewRepository(name);
newRepo.AutoInit = true;
var accessToken = Session["OAuthToken"] as string;
if (accessToken != null)
{
client.Credentials = new Credentials(accessToken);
}
await client.Repository.Create(newRepo);
}
ブレークポイントを設定したところ、すべて問題ないことがわかりました。http://prntscr.com/7h62iqここで見ることができます。プログラムに新しいリポジトリを作成するためのコードを実行させると、これが私の結果です: http://prntscr.com/7h63fz ctokit.NotFoundException: Not Found を取得します。私はすべてを試しましたが、毎回エラーが発生します。私は何を間違っていますか?