C#、.Net 4、5、RestSharp v4.0.3 を使用
GoCardless で api_key を作成しようとしています
次のような RestClient を作成します。
var client = new RestClient();
client.BaseUrl = SandboxBaseUrl;
client.Authenticator = new HttpBasicAuthenticator(apiKeyId, apiKey);
client.AddDefaultHeader("GoCardless-Version", Properties.Settings.Default.GoCardlessVersion);
client.AddDefaultHeader("Accept", "application/json");
client.AddDefaultHeader("content-type", "application/json");
request.AddHeader("content-type", "application/json");
GoCardless に投稿すると、エラーが発生します
{"error":{"message":"'Content-Type' header must be application/json or application/vnd.api+json ......