Windows Phone 7アプリからTrelloのOAuth API呼び出しを使用する方法を理解するのに少し苦労しています。 listing of the endpointsを除いて、APIは実際には文書化されていません。RestSharpを使用したTrello APIの認証
は、ここで私がこれまで持っているものだ:私は404
応答を取得しています
public void OnAuthenticateClicked(object sender, EventArgs e)
{
const string consumerKey = "mykey";
const string consumerSecret = "mysecret";
const string baseUrl = "https://trello.com/1";
var client = new RestClient(baseUrl)
{
Authenticator = OAuth1Authenticator.ForRequestToken(consumerKey, consumerSecret)
};
var request = new RestRequest("OAuthGetRequestToken", Method.POST);
var response = client.ExecuteAsync(request, HandleResponse);
}
private void HandleResponse(IRestResponse restResponse)
{
var response = restResponse;
Console.Write(response.StatusCode);
}
、その何かは明らかに、ではないそうです。
提案がありますか?
GETをお試しください。 –
ありがとうございましたが、それはどちらもうまくいきませんでした。 –
ExecuteAsyncを使用していない場合は機能しますか(例: 'IRestResponse response = client.Execute(request);')?これは私にとって最初のステップ( 'OauthGetRequestToken'ビット)を働かせます。 –