Exemplo n.º 1
0
 public GitHubRequest <AuthorizationModel> GetOrCreate(string clientId, string clientSecret, List <string> scopes, string note, string noteUrl)
 {
     return(GitHubRequest.Put <AuthorizationModel>(Uri + "/clients/" + clientId, new { client_secret = clientSecret, scopes = scopes, note = note, note_url = noteUrl }));
 }