3

さて、APIの操作についての理解は限られています

私はAdobe Sign APIを理解しようとして行き止まりになりました。テストページでこれを入力しましたが、動作します

ここに画像の説明を入力

しかし、C#でそれを行う方法がわかりません

私は次のことを試しましたが、OAuth が不足していることを知っており、次に何を試せばよいかわかりません。ちなみに foo.GetAgreementCreationInfo() はスクリーンショットにある文字列を取得するだけで、大きくて醜いので移動しました

var foo = new Models();
var client = new RestClient("https://api.na1.echosign.com/api/rest/v5");
// client.Authenticator = new HttpBasicAuthenticator(username, password);
var request = new RestRequest("agreements/{AgreementCreationInfo}", Method.POST);
request.AddParameter("name", "value"); // adds to POST or URL querystring based on Method
request.AddUrlSegment("AgreementCreationInfo",                     foo.GetAgreementCreationInfo()); // replaces matching token in request.Resource
IRestResponse response = client.Execute(request);
var content = response.Content; // raw content as string
4

2 に答える 2